:root {
  --color-green: #0f5132;
  --color-gold: #e9c46a;
  --color-orange: #d97706;
  --color-bg: #fcfaf5;
  --color-text: #1f2937;
  --color-white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 5.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

html.drawer-open,
html.drawer-open body {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(252, 250, 245, 0.96);
  border-bottom: 1px solid rgba(15, 81, 50, 0.08);
  box-shadow: 0 4px 24px rgba(15, 81, 50, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  max-width: 90rem;
  margin-inline: auto;
  padding: 0.85rem clamp(0.85rem, 3vw, 2.5rem);
}

.site-header__brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: block;
  width: fit-content;
  max-width: none;
  line-height: 0;
  text-decoration: none;
}

.site-header__actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.site-header__logo {
  display: block;
  width: auto;
  height: clamp(3.6rem, 15.12vw, 4.54rem);
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.site-nav__link:active,
.site-nav__link.is-active {
  color: var(--color-green);
  background: rgba(15, 81, 50, 0.07);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.site-header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: 0.65rem;
  background: var(--color-white);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.site-header__burger-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green);
  line-height: 1;
  transition: color 0.25s var(--ease);
}

.site-header__burger:active {
  background: rgba(233, 196, 106, 0.14);
  border-color: rgba(217, 119, 6, 0.3);
}

.site-header__burger:active .site-header__burger-label {
  color: var(--color-orange);
}

.site-header__burger.is-open {
  background: rgba(15, 81, 50, 0.08);
  border-color: rgba(15, 81, 50, 0.18);
}

.site-header__burger.is-open .site-header__burger-label {
  color: var(--color-green);
}

.site-header__phone {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-green);
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header__phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 81, 50, 0.28);
}

.site-header__phone:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.site-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.site-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.site-drawer.is-open .site-drawer__backdrop {
  opacity: 1;
}

.site-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(18rem, 88vw);
  padding: 1.25rem 1.25rem 2rem;
  background: var(--color-bg);
  border-left: 1px solid rgba(15, 81, 50, 0.1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.site-drawer.is-open .site-drawer__panel {
  transform: translateX(0);
}

.site-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.site-drawer__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
}

.site-drawer__close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.5rem;
  background: rgba(15, 81, 50, 0.08);
  color: var(--color-green);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.site-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-drawer__link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.site-drawer__link:active,
.site-drawer__link.is-active {
  color: var(--color-green);
  background: rgba(15, 81, 50, 0.08);
  border-color: rgba(15, 81, 50, 0.14);
}

.site-drawer__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-green);
}

/* ── Hero ── */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-bg);
}

.hero__stage {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  width: 100%;
}

.hero__bg {
  display: block;
  width: 100%;
}

.hero__bg-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 767px) {
  .hero__content {
    display: contents;
    padding: 0;
  }

  .hero__copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding:
      clamp(1.25rem, 5vw, 2.5rem)
      clamp(1rem, 4vw, 2rem)
      clamp(1.5rem, 6vw, 3rem)
      calc(1cm + clamp(1rem, 4vw, 2rem));
  }
}

.hero__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 2.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  opacity: 0;
  animation: heroFadeUp 0.75s var(--ease) 0.08s both;
}

.hero__title {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 7.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-green);
  word-break: normal;
  overflow-wrap: normal;
  opacity: 0;
  animation: heroFadeUp 0.85s var(--ease) 0.16s both;
}

.hero__title-line {
  display: block;
}

.hero__ornament {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 14rem;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) 0.26s both;
}

.hero__ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: heroLineGrow 0.9s var(--ease) 0.34s forwards;
}

.hero__ornament-icon {
  flex-shrink: 0;
  color: var(--color-gold);
  opacity: 0;
  transform: scale(0.72);
  animation: heroIconPop 0.75s var(--ease) 0.48s both;
}

.hero__lead {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 3.6vw, 1.05rem);
  line-height: 1.65;
  color: rgba(31, 41, 55, 0.82);
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) 0.34s both;
  text-align: left;
}

.hero__lead-line {
  display: block;
}

.hero__lead-desktop {
  display: block;
}

.hero__lead-mobile {
  display: none;
}

.hero__lead-desktop .hero__lead-line {
  display: block;
}

@media (max-width: 767px) {
  .hero__lead-desktop {
    display: none;
  }

  .hero__lead-mobile {
    display: block;
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  align-self: flex-start;
  margin-inline: 0;
  width: auto;
  min-width: min(100%, 14.5rem);
  max-width: 18rem;
  min-height: 3rem;
  padding: 0.85rem 1.85rem;
  border: none;
  border-radius: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-orange);
  cursor: pointer;
  opacity: 0;
  animation:
    heroCtaPopIn 0.95s cubic-bezier(0.34, 1.45, 0.64, 1) 0.42s both,
    heroCtaPopPulse 4s ease-in-out 1.6s infinite;
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.hero__cta:hover {
  animation-play-state: paused, paused;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.32);
  background: #c26a05;
}

.hero__cta:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.hero__features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  gap: 0;
  margin: 0;
  padding:
    1.15rem
    clamp(1rem, 4vw, 2rem)
    1.5rem
    calc(1cm + clamp(1rem, 4vw, 2rem));
  list-style: none;
  width: 100%;
  background: var(--color-bg);
  opacity: 0;
  animation: heroFadeUp 0.85s var(--ease) 0.52s both;
}

.hero__feature {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  min-width: 0;
  width: 100%;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 2.8vw, 0.82rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  color: rgba(31, 41, 55, 0.88);
  opacity: 0;
  animation: heroFadeUp 0.75s var(--ease) both;
}

.hero__feature:nth-child(1) { animation-delay: 0.58s; }
.hero__feature:nth-child(2) { animation-delay: 0.68s; }
.hero__feature:nth-child(3) { animation-delay: 0.78s; }
.hero__feature:nth-child(4) { animation-delay: 0.88s; }

.hero__feature + .hero__feature::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(233, 196, 106, 0) 0%,
    rgba(233, 196, 106, 0.35) 18%,
    rgba(233, 196, 106, 0.95) 50%,
    rgba(233, 196, 106, 0.35) 82%,
    rgba(233, 196, 106, 0) 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  animation: heroLineGrow 0.85s var(--ease) both;
}

.hero__feature:nth-child(2)::before { animation-delay: 0.72s; }
.hero__feature:nth-child(3)::before { animation-delay: 0.82s; }
.hero__feature:nth-child(4)::before { animation-delay: 0.92s; }

.hero__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  color: var(--color-green);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.hero__feature:hover .hero__feature-icon {
  transform: translateY(-3px) scale(1.08);
  color: var(--color-orange);
}

@media (max-width: 767px) {
  .hero__cta {
    margin-top: 0.8cm;
  }

  .hero__features {
    flex-direction: row;
    align-items: stretch;
    gap: 0.4rem;
    padding:
      0.85rem
      clamp(0.5rem, 2.5vw, 0.85rem)
      1.15rem;
  }

  .hero__feature {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    padding: 0.5rem 0.25rem;
    font-size: clamp(0.5rem, 2.35vw, 0.62rem);
    line-height: 1.2;
    text-align: center;
    border-radius: 0.45rem;
    overflow: hidden;
    isolation: isolate;
    background: var(--color-bg);
    border: 1px solid rgba(233, 196, 106, 0.2);
  }

  .hero__feature-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .hero__feature + .hero__feature::before,
  .hero__feature::before {
    content: none;
  }

  .hero__feature::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
      125deg,
      rgba(233, 196, 106, 0.32),
      rgba(233, 196, 106, 0.48),
      rgba(217, 119, 6, 0.34),
      rgba(233, 196, 106, 0.48),
      rgba(233, 196, 106, 0.32)
    );
    background-size: 240% 240%;
    opacity: 0.38;
    animation: heroFeatureBorderBreathe 6s ease-in-out infinite;
    pointer-events: none;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  .hero__feature:nth-child(2)::after {
    animation-delay: 0.8s;
  }

  .hero__feature:nth-child(3)::after {
    animation-delay: 1.6s;
  }

  .hero__feature:nth-child(4)::after {
    animation-delay: 2.4s;
  }
}

@keyframes heroFeatureBorderBreathe {
  0%,
  100% {
    opacity: 0.28;
    background-position: 0% 50%;
  }

  50% {
    opacity: 0.82;
    background-position: 100% 50%;
  }
}

@keyframes heroCtaPopIn {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  55% {
    opacity: 1;
    transform: scale(1.08);
  }

  78% {
    transform: scale(0.97);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCtaPopPulse {
  0%,
  86%,
  100% {
    transform: scale(1);
  }

  91% {
    transform: scale(1.06);
  }

  96% {
    transform: scale(0.98);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes heroDividerGrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes heroIconPop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 6.75rem;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .site-header__brand {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    flex-shrink: 0;
    width: auto;
    max-width: none;
  }

  .site-header__logo {
    height: clamp(4.54rem, 6.91vw, 6.26rem);
    max-width: none;
    object-position: left center;
  }

  .site-header__actions {
    grid-column: auto;
    grid-row: auto;
  }

  .site-nav {
    display: block;
  }

  .site-header__phone {
    display: inline-flex;
  }

  .site-header__burger {
    display: none;
  }

  .hero__eyebrow {
    letter-spacing: 0.18em;
  }

  .hero__title {
    width: max-content;
    max-width: min(100%, 26rem);
    font-size: clamp(2.2rem, 4.5vw, 3.65rem);
    line-height: 1.08;
    text-align: left;
  }

  .hero__ornament {
    max-width: 18rem;
  }

  .hero__lead {
    max-width: 34rem;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.7;
  }

  .hero__cta {
    align-self: flex-start;
    margin-inline: 0;
    margin-top: 2cm;
    width: auto;
    min-width: 14.5rem;
    max-width: none;
    min-height: 3.1rem;
  }

  .hero {
    display: grid;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }

  .hero__stage {
    grid-area: 1 / 1;
    display: grid;
    min-height: inherit;
  }

  .hero__bg {
    grid-area: 1 / 1;
  }

  .hero__bg,
  .hero__bg-img {
    height: 100%;
    min-height: inherit;
  }

  .hero__bg-img {
    object-fit: cover;
    object-position: center;
  }

  .hero__content {
    grid-area: 1 / 1;
    align-self: center;
    justify-self: start;
    align-items: flex-start;
    justify-content: center;
    max-width: min(54%, 44rem);
    padding:
      clamp(2rem, 4vw, 3.5rem)
      clamp(1.5rem, 4vw, 3rem)
      clamp(2rem, 4vw, 3.5rem)
      calc(1cm + clamp(1.5rem, 4vw, 3rem));
  }

  .hero__copy {
    gap: clamp(0.75rem, 2.5vw, 1.5rem);
  }

  .hero__features {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    align-self: flex-start;
    max-width: 100%;
    margin-top: 0.15rem;
    margin-left: -2cm;
    width: calc(100% + 2cm);
    padding: 0;
    background: transparent;
  }

  .hero__feature {
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: auto;
    padding: 0.35rem 0.85rem;
    font-size: clamp(0.68rem, 0.95vw, 0.8rem);
  }

  .hero__feature + .hero__feature::before {
    top: 14%;
    bottom: 14%;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(233, 196, 106, 0) 0%,
      rgba(233, 196, 106, 0.35) 18%,
      rgba(233, 196, 106, 0.95) 50%,
      rgba(233, 196, 106, 0.35) 82%,
      rgba(233, 196, 106, 0) 100%
    );
    transform: scaleY(0);
    transform-origin: center;
    animation-name: heroDividerGrow;
  }
}

@media (min-width: 1100px) {
  .hero__content {
    max-width: min(56%, 46rem);
    padding-left: calc(1cm + clamp(2.5rem, 5vw, 5rem));
  }

  .hero__title {
    max-width: min(100%, 28rem);
  }
}

/* ── Productos ── */

.products {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem);
  background:
    linear-gradient(180deg, rgba(15, 81, 50, 0.03) 0%, transparent 18%),
    var(--color-bg);
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 70rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 196, 106, 0.55),
    transparent
  );
}

.products__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.products__header {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.products__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 2.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.products__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-green);
}

.products__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.15rem auto 1.35rem;
  max-width: 16rem;
}

.products__ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.products__ornament-icon {
  flex-shrink: 0;
  color: var(--color-gold);
}

.products__lead {
  margin: 0;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(31, 41, 55, 0.82);
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin: clamp(2.25rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.products__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid rgba(15, 81, 50, 0.08);
  box-shadow: 0 10px 32px rgba(15, 81, 50, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.products__card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 196, 106, 0.45);
  box-shadow: 0 18px 42px rgba(15, 81, 50, 0.1);
}

.products__card-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.55rem 0.55rem 0;
  overflow: hidden;
}

.products__card-visual--pollo {
  background: linear-gradient(145deg, rgba(15, 81, 50, 0.1) 0%, rgba(233, 196, 106, 0.18) 100%);
  color: var(--color-green);
}

.products__card-visual--ponedoras {
  background: linear-gradient(145deg, rgba(233, 196, 106, 0.22) 0%, rgba(15, 81, 50, 0.12) 100%);
  color: var(--color-green);
}

.products__card-visual--pollito {
  background: linear-gradient(145deg, rgba(217, 119, 6, 0.12) 0%, rgba(233, 196, 106, 0.2) 100%);
  color: var(--color-orange);
}

.products__card-visual--huevos {
  background: linear-gradient(145deg, rgba(252, 250, 245, 1) 0%, rgba(233, 196, 106, 0.28) 100%);
  color: #b8862d;
}

.products__card-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(233, 196, 106, 0.35);
}

.products__card-media {
  overflow: hidden;
  border-radius: 0.85rem 0.85rem 0.35rem 0.35rem;
  line-height: 0;
}

.products__card-img {
  display: block;
  width: 100%;
  height: clamp(11.5rem, 28vw, 13.5rem);
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.4s var(--ease);
}

.products__card:hover .products__card-img {
  transform: scale(1.04);
}

.products__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.65rem 1.25rem 1.35rem;
  border-top: none;
}

.products__card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-green);
}

.products__card-text {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(31, 41, 55, 0.78);
}

.products__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-orange);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.products__card-link:hover {
  gap: 0.65rem;
  color: var(--color-green);
}

.products__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.products__note {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(31, 41, 55, 0.72);
}

.products__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.85rem 1.85rem;
  border-radius: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-green);
  box-shadow: 0 10px 28px rgba(15, 81, 50, 0.18);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.products__cta:hover {
  transform: translateY(-2px);
  background: #0c4228;
  box-shadow: 0 14px 32px rgba(15, 81, 50, 0.24);
}

.products__cta:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

@media (min-width: 600px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .products__card-body {
    padding: 1.55rem 1.1rem 1.25rem;
  }

  .products__card-text {
    font-size: 0.84rem;
  }

  .products__card-visual--huevos .products__card-img {
    object-position: 15% 42%;
  }
}

/* ── Nosotros ── */

.about {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.about__manifest {
  position: relative;
  display: grid;
  min-height: clamp(18rem, 52vw, 28rem);
  align-items: end;
}

.about__manifest-media {
  position: absolute;
  inset: 0;
}

.about__manifest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.1);
}

.about--revealed .about__manifest-img {
  animation: aboutImageReveal 1.8s var(--ease) forwards;
}

.about__manifest-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 81, 50, 0.15) 0%, rgba(15, 81, 50, 0.88) 72%, rgba(15, 81, 50, 0.95) 100%),
    linear-gradient(90deg, rgba(15, 81, 50, 0.55) 0%, transparent 55%);
}

.about__manifest-content {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(2rem, 6vw, 4rem), 52rem);
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  color: var(--color-white);
}

.has-about-animations .about:not(.about--revealed) .about__manifest-content > * {
  opacity: 0;
  transform: translateY(1.35rem);
}

.about--revealed .about__manifest-content > * {
  animation: aboutReveal 0.9s var(--ease) forwards;
}

.about--revealed .about__manifest-content > *:nth-child(1) {
  animation-delay: 0.12s;
}

.about--revealed .about__manifest-content > *:nth-child(2) {
  animation-delay: 0.26s;
}

.about--revealed .about__manifest-content > *:nth-child(3) {
  animation-delay: 0.42s;
}

.about--revealed .about__quote {
  animation-name: aboutReveal, aboutQuoteLine;
  animation-duration: 0.9s, 0.85s;
  animation-timing-function: var(--ease), var(--ease);
  animation-fill-mode: forwards, forwards;
  animation-delay: 0.42s, 0.55s;
}

.about__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 2.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about__title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.about__quote {
  margin: 1.15rem 0 0;
  max-width: 26rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-gold);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(252, 250, 245, 0.92);
}

.about__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding:
    clamp(2.5rem, 5vw, 3.5rem)
    clamp(1.25rem, 4vw, 3rem)
    clamp(3.5rem, 7vw, 5rem);
}

.about__mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2.5vw, 1.15rem);
}

.has-about-animations .about:not(.about--revealed) .about__mosaic > * {
  opacity: 0;
  transform: translateY(1.5rem);
}

.about--revealed .about__mosaic > * {
  animation: aboutReveal 0.88s var(--ease) forwards;
}

.about--revealed .about__mosaic > *:nth-child(1) { animation-delay: 0.08s; }
.about--revealed .about__mosaic > *:nth-child(2) { animation-delay: 0.2s; }
.about--revealed .about__mosaic > *:nth-child(3) { animation-delay: 0.32s; }
.about--revealed .about__mosaic > *:nth-child(4) { animation-delay: 0.44s; }
.about--revealed .about__mosaic > *:nth-child(5) { animation-delay: 0.56s; }

.has-about-animations .about:not(.about--revealed) .about__figure,
.has-about-animations .about:not(.about--revealed) .about__path-step {
  opacity: 0;
  transform: translateY(1rem);
}

.about--revealed .about__figure {
  animation: aboutReveal 0.75s var(--ease) forwards;
}

.about--revealed .about__figure:nth-child(1) { animation-delay: 0.48s; }
.about--revealed .about__figure:nth-child(2) { animation-delay: 0.62s; }
.about--revealed .about__figure:nth-child(3) { animation-delay: 0.76s; }

.about--revealed .about__path-step {
  animation: aboutReveal 0.75s var(--ease) forwards;
}

.about--revealed .about__path-step:nth-child(1) { animation-delay: 0.58s; }
.about--revealed .about__path-step:nth-child(2) { animation-delay: 0.72s; }
.about--revealed .about__path-step:nth-child(3) { animation-delay: 0.86s; }

.about--revealed .about__cta {
  animation: aboutCtaPop 0.85s cubic-bezier(0.34, 1.45, 0.64, 1) 0.7s both;
}

@keyframes aboutReveal {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutImageReveal {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes aboutQuoteLine {
  from {
    border-left-color: transparent;
    padding-left: 0;
  }

  to {
    border-left-color: var(--color-gold);
    padding-left: 1rem;
  }
}

@keyframes aboutCtaPop {
  0% {
    transform: scale(0.92);
  }

  65% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

.about__cell {
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border-radius: 1rem;
  border: 1px solid rgba(15, 81, 50, 0.08);
}

.about__cell--story {
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(15, 81, 50, 0.05);
}

.about__cell--mission {
  background: var(--color-green);
  border-color: rgba(233, 196, 106, 0.25);
  color: var(--color-white);
}

.about__cell-kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.about__cell--mission .about__cell-kicker {
  color: var(--color-gold);
}

.about__cell-text {
  margin: 0;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.7;
  color: rgba(31, 41, 55, 0.82);
}

.about__cell--mission .about__cell-text {
  color: rgba(252, 250, 245, 0.9);
}

.about__figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 0.85rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 6.5rem;
  padding: 1rem 0.5rem;
  text-align: center;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(233, 196, 106, 0.22) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(233, 196, 106, 0.35);
}

.about__figure-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-green);
  font-variant-numeric: tabular-nums;
}

.about__figure-label {
  font-size: clamp(0.58rem, 1.8vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.68);
}

.about__path {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  list-style: none;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid rgba(15, 81, 50, 0.08);
  box-shadow: 0 10px 30px rgba(15, 81, 50, 0.05);
}

.about__path-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1rem 0;
}

.about__path-step:not(:last-child) {
  border-bottom: 1px solid rgba(233, 196, 106, 0.3);
}

.about__path-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.about__path-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-green);
}

.about__path-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(31, 41, 55, 0.72);
}

.about__cell--action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 81, 50, 0.05) 0%, rgba(233, 196, 106, 0.14) 100%);
}

.about__action-text {
  margin: 0;
  max-width: 24rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(31, 41, 55, 0.78);
}

.about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.85rem 1.85rem;
  border-radius: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-orange);
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.22);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.about__cta:hover {
  transform: translateY(-2px);
  background: #c26a05;
  box-shadow: 0 14px 32px rgba(217, 119, 6, 0.3);
}

.about__cta:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .about__manifest-content {
    margin-inline: clamp(1.25rem, 4vw, 3rem) auto;
    padding-inline: 0;
  }

  .about__mosaic {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .about__cell--story {
    grid-column: span 7;
  }

  .about__cell--mission {
    grid-column: span 5;
  }

  .about__figures {
    grid-column: span 12;
  }

  .about__path {
    grid-column: span 8;
    padding: 1.35rem 1.5rem;
  }

  .about__path-step {
    grid-template-columns: 3.5rem 1fr;
    padding: 1.1rem 0;
  }

  .about__cell--action {
    grid-column: span 4;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .about__path {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 1.25rem;
    align-items: start;
  }

  .about__path-step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    text-align: center;
  }

  .about__path-step:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(233, 196, 106, 0.3);
  }
}

@media (max-width: 479px) {
  .about__figures {
    grid-template-columns: 1fr;
  }

  .about__figure {
    min-height: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 0.85rem 1rem;
  }

  .about__figure-label {
    max-width: 10rem;
  }
}

/* ── Por qué elegirnos + Proceso ── */

.why {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem);
  background:
    linear-gradient(180deg, rgba(233, 196, 106, 0.06) 0%, transparent 22%),
    var(--color-bg);
  overflow: hidden;
  transition: background 0.6s var(--ease);
}

.why:hover {
  background:
    linear-gradient(180deg, rgba(233, 196, 106, 0.12) 0%, rgba(15, 81, 50, 0.04) 50%, transparent 100%),
    var(--color-bg);
}

.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 70rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 196, 106, 0.55),
    transparent
  );
}

.why__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.why__header {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.why__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 2.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.why__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-green);
}

.why__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.15rem auto 1.35rem;
  max-width: 16rem;
}

.why__ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0.75);
  opacity: 0.75;
  transition:
    transform 0.55s var(--ease),
    opacity 0.45s var(--ease);
}

.why:hover .why__ornament-line {
  transform: scaleX(1);
  opacity: 1;
}

.why__ornament-icon {
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform 0.45s var(--ease), color 0.35s var(--ease);
}

.why:hover .why__ornament-icon {
  transform: translateY(-4px) scale(1.08);
  color: var(--color-orange);
}

.why__lead {
  margin: 0;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(31, 41, 55, 0.82);
}

.why__reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2.5vw, 1.15rem);
  margin: clamp(2.25rem, 5vw, 3.25rem) 0 0;
  padding: 0;
  list-style: none;
}

.why__reason {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1.15rem, 3vw, 1.45rem);
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid rgba(15, 81, 50, 0.08);
  box-shadow: 0 8px 28px rgba(15, 81, 50, 0.05);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.why__reason::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    125deg,
    rgba(233, 196, 106, 0.35),
    rgba(217, 119, 6, 0.55),
    rgba(233, 196, 106, 0.35)
  );
  background-size: 220% 220%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.why__reason:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 196, 106, 0.5);
  box-shadow: 0 18px 40px rgba(15, 81, 50, 0.11);
}

.why__reason:hover::after {
  opacity: 1;
  animation: whyBorderShine 2.2s ease-in-out infinite;
}

.why__reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  color: var(--color-green);
  background: rgba(15, 81, 50, 0.07);
  transition:
    transform 0.4s var(--ease),
    color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.why__reason:hover .why__reason-icon {
  transform: translateY(-3px) scale(1.08);
  color: var(--color-orange);
  background: rgba(217, 119, 6, 0.12);
}

.why__reason-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-green);
  transition: color 0.35s var(--ease);
}

.why__reason:hover .why__reason-title {
  color: #0c4228;
}

.why__reason-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(31, 41, 55, 0.76);
}

.why__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(2.75rem, 6vw, 4rem) 0 clamp(1.75rem, 4vw, 2.5rem);
}

.why__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.7), transparent);
  transform: scaleX(0.65);
  opacity: 0.65;
  transition:
    transform 0.55s var(--ease),
    opacity 0.45s var(--ease),
    background 0.45s var(--ease);
}

.why:hover .why__divider-line {
  transform: scaleX(1);
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-orange), var(--color-gold), transparent);
}

.why__divider-label {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-green);
  white-space: nowrap;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.why:hover .why__divider-label {
  color: var(--color-orange);
  transform: scale(1.03);
}

.why__process-lead {
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  max-width: 36rem;
  text-align: center;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.7;
  color: rgba(31, 41, 55, 0.78);
}

.why__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: clamp(1rem, 3vw, 1.35rem);
  list-style: none;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid rgba(15, 81, 50, 0.08);
  box-shadow: 0 10px 32px rgba(15, 81, 50, 0.06);
  counter-reset: why-step;
  transition:
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.why:hover .why__steps {
  border-color: rgba(233, 196, 106, 0.35);
  box-shadow: 0 18px 44px rgba(15, 81, 50, 0.1);
}

.why__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: clamp(1rem, 2.5vw, 1.25rem) 0.5rem;
  border-radius: 0.65rem;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.why__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-orange));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.why__step:hover {
  background: rgba(233, 196, 106, 0.09);
  transform: translateX(4px);
}

.why__step:hover::before {
  transform: scaleY(1);
}

.why__step:not(:last-child) {
  border-bottom: 1px solid rgba(233, 196, 106, 0.28);
}

.why__step-num {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  transition: transform 0.4s var(--ease), color 0.35s var(--ease);
}

.why__step:hover .why__step-num {
  transform: scale(1.12);
  color: var(--color-orange);
}

.why__step-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-green);
  transition: color 0.35s var(--ease);
}

.why__step:hover .why__step-title {
  color: #0a4228;
}

.why__step-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(31, 41, 55, 0.72);
}

.has-why-animations .why:not(.why--revealed) .why__header > *,
.has-why-animations .why:not(.why--revealed) .why__reason,
.has-why-animations .why:not(.why--revealed) .why__divider,
.has-why-animations .why:not(.why--revealed) .why__process-lead,
.has-why-animations .why:not(.why--revealed) .why__step {
  opacity: 0;
  transform: translateY(1.35rem);
}

.why--revealed .why__header > * {
  animation: aboutReveal 0.85s var(--ease) forwards;
}

.why--revealed .why__header > *:nth-child(1) { animation-delay: 0.06s; }
.why--revealed .why__header > *:nth-child(2) { animation-delay: 0.16s; }
.why--revealed .why__header > *:nth-child(3) { animation-delay: 0.26s; }
.why--revealed .why__header > *:nth-child(4) { animation-delay: 0.36s; }

.why--revealed .why__reason {
  animation: aboutReveal 0.8s var(--ease) forwards;
}

.why--revealed .why__reason:nth-child(1) { animation-delay: 0.2s; }
.why--revealed .why__reason:nth-child(2) { animation-delay: 0.32s; }
.why--revealed .why__reason:nth-child(3) { animation-delay: 0.44s; }
.why--revealed .why__reason:nth-child(4) { animation-delay: 0.56s; }

.why--revealed .why__divider {
  animation: aboutReveal 0.85s var(--ease) 0.62s forwards;
}

.why--revealed .why__process-lead {
  animation: aboutReveal 0.85s var(--ease) 0.72s forwards;
}

.why--revealed .why__step {
  animation: aboutReveal 0.75s var(--ease) forwards;
}

.why--revealed .why__step:nth-child(1) { animation-delay: 0.8s; }
.why--revealed .why__step:nth-child(2) { animation-delay: 0.92s; }
.why--revealed .why__step:nth-child(3) { animation-delay: 1.04s; }
.why--revealed .why__step:nth-child(4) { animation-delay: 1.16s; }

.has-why-animations .why:not(.why--revealed) .why__divider--testimonials,
.has-why-animations .why:not(.why--revealed) .why__testimonials {
  opacity: 0;
  transform: translateY(1.35rem);
}

.why--revealed .why__divider--testimonials {
  animation: aboutReveal 0.85s var(--ease) 1.28s forwards;
}

.why--revealed .why__testimonials {
  animation: aboutReveal 0.9s var(--ease) 1.42s forwards;
}

/* ── Testimonios (carrusel) ── */

.why__testimonials {
  margin-top: 0.25rem;
}

.why__testimonials-head {
  max-width: 32rem;
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  text-align: center;
}

.why__testimonials-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-green);
}

.why__testimonials-lead {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(31, 41, 55, 0.72);
}

.why__carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.85rem 0.65rem;
  align-items: center;
}

.why__carousel-viewport {
  overflow: hidden;
  border-radius: 1rem;
}

.why__carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.why__testimonial {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  padding: clamp(1.35rem, 3.5vw, 1.85rem);
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid rgba(15, 81, 50, 0.08);
  box-shadow: 0 12px 36px rgba(15, 81, 50, 0.07);
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.why__carousel:hover .why__testimonial {
  border-color: rgba(233, 196, 106, 0.35);
  box-shadow: 0 16px 42px rgba(15, 81, 50, 0.09);
}

.why__testimonial-stars {
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}

.why__testimonial-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(31, 41, 55, 0.88);
}

.why__testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(233, 196, 106, 0.35);
}

.why__testimonial-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-green);
}

.why__testimonial-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.58);
}

.why__carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-green);
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}

.why__carousel-btn:hover {
  transform: scale(1.06);
  background: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.why__carousel-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.why__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  grid-column: 1 / -1;
}

.why__carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(15, 81, 50, 0.18);
  cursor: pointer;
  transition:
    width 0.35s var(--ease),
    background 0.35s var(--ease);
}

.why__carousel-dot.is-active {
  width: 1.35rem;
  background: var(--color-orange);
}

.why__carousel-dot:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@keyframes whyBorderShine {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (min-width: 600px) {
  .why__reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .why__reasons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 1rem;
    padding: 1.5rem 1.25rem;
  }

  .why__step {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    text-align: center;
    padding: 0.5rem 0.65rem;
  }

  .why__step::before {
    left: 20%;
    right: 20%;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    transform: scaleX(0);
    transform-origin: center;
  }

  .why__step:hover {
    transform: translateY(-4px);
  }

  .why__step:hover::before {
    transform: scaleX(1);
  }

  .why__step:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(233, 196, 106, 0.28);
  }

  .why__step-body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why__carousel {
    gap: 1rem;
  }
}

@media (max-width: 479px) {
  .why__carousel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .why__carousel-viewport {
    grid-column: 1;
    grid-row: 1;
  }

  .why__carousel-btn--prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .why__carousel-btn--next {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .why__carousel-dots {
    grid-row: 3;
  }
}

/* ── Preguntas frecuentes ── */

.faq {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem);
  background:
    linear-gradient(180deg, rgba(15, 81, 50, 0.03) 0%, transparent 20%),
    var(--color-white);
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 70rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 196, 106, 0.55),
    transparent
  );
}

.faq__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.faq__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 2.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.faq__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-green);
}

.faq__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.15rem auto 1.35rem;
  max-width: 16rem;
}

.faq__ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.faq__ornament-icon {
  flex-shrink: 0;
  color: var(--color-gold);
}

.faq__lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(31, 41, 55, 0.82);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  border-radius: 0.85rem;
  background: var(--color-bg);
  border: 1px solid rgba(15, 81, 50, 0.08);
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.faq__item[open] {
  border-color: rgba(233, 196, 106, 0.45);
  box-shadow: 0 10px 28px rgba(15, 81, 50, 0.07);
  background: var(--color-white);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 2.2vw, 0.95rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-green);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__item[open] .faq__question {
  color: #0a4228;
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(15, 81, 50, 0.07);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-green);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.faq__icon::before {
  width: 0.65rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 0.65rem;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  background: rgba(217, 119, 6, 0.12);
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  background: var(--color-orange);
}

.faq__item[open] .faq__icon::before {
  background: var(--color-orange);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(31, 41, 55, 0.78);
}

.faq__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.25rem, 5vw, 3rem);
  text-align: center;
}

.faq__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(31, 41, 55, 0.72);
}

.faq__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.85rem 1.85rem;
  border-radius: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-green);
  box-shadow: 0 10px 28px rgba(15, 81, 50, 0.18);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.faq__cta:hover {
  transform: translateY(-2px);
  background: #0c4228;
  box-shadow: 0 14px 32px rgba(15, 81, 50, 0.24);
}

.faq__cta:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.has-faq-animations .faq:not(.faq--revealed) .faq__header > *,
.has-faq-animations .faq:not(.faq--revealed) .faq__item,
.has-faq-animations .faq:not(.faq--revealed) .faq__footer {
  opacity: 0;
  transform: translateY(1.25rem);
}

.faq--revealed .faq__header > * {
  animation: aboutReveal 0.85s var(--ease) forwards;
}

.faq--revealed .faq__header > *:nth-child(1) { animation-delay: 0.06s; }
.faq--revealed .faq__header > *:nth-child(2) { animation-delay: 0.16s; }
.faq--revealed .faq__header > *:nth-child(3) { animation-delay: 0.26s; }
.faq--revealed .faq__header > *:nth-child(4) { animation-delay: 0.36s; }

.faq--revealed .faq__item {
  animation: aboutReveal 0.75s var(--ease) forwards;
}

.faq--revealed .faq__item:nth-child(1) { animation-delay: 0.2s; }
.faq--revealed .faq__item:nth-child(2) { animation-delay: 0.3s; }
.faq--revealed .faq__item:nth-child(3) { animation-delay: 0.4s; }
.faq--revealed .faq__item:nth-child(4) { animation-delay: 0.5s; }
.faq--revealed .faq__item:nth-child(5) { animation-delay: 0.6s; }
.faq--revealed .faq__item:nth-child(6) { animation-delay: 0.7s; }

.faq--revealed .faq__footer {
  animation: aboutReveal 0.85s var(--ease) 0.82s forwards;
}

/* ── Contacto ── */

.contact {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 5rem);
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 81, 50, 0.04) 100%),
    var(--color-bg);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 70rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 196, 106, 0.55),
    transparent
  );
}

.contact__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.contact__header {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.contact__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 2.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.contact__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-green);
}

.contact__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.15rem auto 1.35rem;
  max-width: 16rem;
}

.contact__ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.contact__ornament-icon {
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact__lead {
  margin: 0;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(31, 41, 55, 0.82);
}

.contact__hub {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: linear-gradient(145deg, #0a3d26 0%, var(--color-green) 55%, #0d4529 100%);
  border: 1px solid rgba(233, 196, 106, 0.25);
  box-shadow:
    0 20px 50px rgba(15, 81, 50, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact__hub::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  box-sizing: border-box;
  background: linear-gradient(
    125deg,
    rgba(233, 196, 106, 0.2),
    rgba(233, 196, 106, 0.75),
    rgba(217, 119, 6, 0.45),
    rgba(233, 196, 106, 0.75),
    rgba(233, 196, 106, 0.2)
  );
  background-size: 220% 220%;
  opacity: 0.55;
  animation: contactHubBorderShine 7s ease-in-out infinite;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

@keyframes contactHubBorderShine {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.38;
  }

  50% {
    background-position: 100% 50%;
    opacity: 0.72;
  }
}

.contact__hub-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 1.75rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(233, 196, 106, 0.18), transparent 70%);
}

.contact__hub-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 55% at 50% 50%,
    rgba(233, 196, 106, 0.22),
    transparent 72%
  );
  animation: contactVisualGlow 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes contactVisualGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.contact__logo-frame {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  max-width: 100%;
  vertical-align: top;
  padding: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  line-height: 0;
  background: transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

.contact__logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  padding: 2px;
  box-sizing: border-box;
  background: linear-gradient(
    125deg,
    rgba(233, 196, 106, 0.45),
    rgba(233, 196, 106, 0.95),
    rgba(217, 119, 6, 0.5),
    rgba(233, 196, 106, 0.95),
    rgba(233, 196, 106, 0.45)
  );
  background-size: 240% 240%;
  opacity: 0.55;
  animation: contactLogoBorderBreathe 5.5s ease-in-out infinite;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

@keyframes contactLogoBorderBreathe {
  0%,
  100% {
    opacity: 0.42;
    background-position: 0% 50%;
  }

  50% {
    opacity: 0.88;
    background-position: 100% 50%;
  }
}

.contact__hub-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 14rem;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: contain;
}

.contact__hub-body {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.contact__hub-badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  background: var(--color-gold);
}

@keyframes contactBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 196, 106, 0);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(233, 196, 106, 0.14);
  }
}

.contact__hub-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
}

.contact__hub-text {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  font-size: clamp(0.9rem, 2vw, 0.98rem);
  line-height: 1.7;
  color: rgba(252, 250, 245, 0.82);
}

.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.contact__perk {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(252, 250, 245, 0.9);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.contact__perk:hover {
  transform: translateX(5px);
  color: var(--color-white);
}

.contact__perk svg {
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform 0.35s var(--ease);
}

.contact__perk:hover svg {
  transform: scale(1.15);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.contact__channel--wa {
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.35);
}

@keyframes contactWaGlow {
  0%,
  88%,
  100% {
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.35);
  }

  92% {
    box-shadow: 0 14px 36px rgba(18, 140, 126, 0.55);
  }

  96% {
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.4);
  }
}

.contact__channel--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.45);
}

.contact__channel--phone {
  color: var(--color-green);
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact__channel--phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.contact__channel-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.contact__channel:hover .contact__channel-icon {
  transform: scale(1.08);
}

.contact__channel--phone .contact__channel-icon {
  color: var(--color-orange);
  background: rgba(217, 119, 6, 0.1);
}

.contact__channel-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact__channel-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact__channel-desc {
  font-size: 0.78rem;
  opacity: 0.85;
}

.contact__channel-arrow {
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.contact__channel:hover .contact__channel-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.contact__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: clamp(1.5rem, 3.5vw, 2rem) 0 0;
  padding: 0;
  list-style: none;
}

.contact__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: var(--color-white);
  border: 1px solid rgba(15, 81, 50, 0.08);
  box-shadow: 0 6px 20px rgba(15, 81, 50, 0.04);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.contact__meta-item:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 196, 106, 0.35);
}

.contact__meta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.55rem;
  color: var(--color-green);
  background: rgba(15, 81, 50, 0.07);
}

.contact__meta-label {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.contact__meta-value {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(31, 41, 55, 0.8);
}

.contact__meta-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.contact__meta-link:hover {
  color: var(--color-orange);
}

.contact__map {
  position: relative;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 81, 50, 0.12);
  isolation: isolate;
}

.contact__map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 2px;
  box-sizing: border-box;
  background: linear-gradient(
    125deg,
    rgba(233, 196, 106, 0.45),
    rgba(233, 196, 106, 0.95),
    rgba(217, 119, 6, 0.5),
    rgba(233, 196, 106, 0.95),
    rgba(233, 196, 106, 0.45)
  );
  background-size: 240% 240%;
  opacity: 0.55;
  animation: contactMapBorderBreathe 6s ease-in-out infinite;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

@keyframes contactMapBorderBreathe {
  0%,
  100% {
    opacity: 0.42;
    background-position: 0% 50%;
  }

  50% {
    opacity: 0.9;
    background-position: 100% 50%;
  }
}

.contact__map-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(14rem, 42vw, 22rem);
  border: 0;
  transform: scale(1);
  transition: transform 0.6s var(--ease);
}

.contact--revealed .contact__map:hover .contact__map-frame {
  transform: scale(1.02);
}

/* ── Botón flotante WhatsApp ── */

.fab-wa-wrap {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 280;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.fab-wa-popup {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.85rem);
  width: min(18rem, calc(100vw - 2rem));
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 0.85rem;
  background: var(--color-white);
  border: 1px solid rgba(233, 196, 106, 0.4);
  box-shadow: 0 16px 42px rgba(15, 81, 50, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.65rem) scale(0.96);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    visibility 0.4s;
  pointer-events: none;
}

.fab-wa-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-wa-popup__close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(31, 41, 55, 0.55);
  background: transparent;
  cursor: pointer;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.fab-wa-popup__close:hover {
  color: var(--color-green);
  background: rgba(15, 81, 50, 0.06);
}

.fab-wa-popup__eyebrow {
  margin: 0 0 0.45rem;
  padding-right: 1.5rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.fab-wa-popup__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-green);
}

.fab-wa-popup__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(31, 41, 55, 0.78);
}

.fab-wa-popup__cta {
  display: block;
  margin-top: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 22px rgba(18, 140, 126, 0.3);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.fab-wa-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.38);
}

.fab-wa {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.35rem, 8.5vw, 3.65rem);
  height: clamp(3.35rem, 8.5vw, 3.65rem);
  text-decoration: none;
  color: var(--color-white);
  border-radius: 50%;
  filter: drop-shadow(0 10px 24px rgba(15, 81, 50, 0.35));
  transition:
    transform 0.35s var(--ease),
    filter 0.35s var(--ease);
}

.fab-wa:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 14px 32px rgba(37, 211, 102, 0.45));
}

.fab-wa:active {
  transform: scale(0.96);
}

.fab-wa:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.fab-wa__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(233, 196, 106, 0.5);
  animation: fabWaPulse 2.4s var(--ease) infinite;
  pointer-events: none;
}

.fab-wa__ring--delay {
  animation-delay: 1.2s;
}

.fab-wa__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(160deg, #3ee884 0%, #25d366 42%, #1eb854 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 18px rgba(30, 184, 84, 0.45);
}

.fab-wa__ico {
  display: block;
  margin-left: 1px;
  margin-top: 1px;
}

@keyframes fabWaPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

html.drawer-open .fab-wa-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.9);
}

/* ── Footer ── */

.site-footer {
  padding: 0.9rem clamp(1rem, 4vw, 2rem);
  background: linear-gradient(
    135deg,
    #062818 0%,
    var(--color-green) 38%,
    #1a7048 62%,
    #0a3d26 100%
  );
  border-top: 1px solid rgba(233, 196, 106, 0.22);
  color: rgba(252, 250, 245, 0.88);
}

.site-footer__inner {
  max-width: 72rem;
  margin-inline: auto;
  text-align: center;
}

.site-footer__text {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(252, 250, 245, 0.82);
}

.site-footer__brand {
  font-weight: 600;
  color: var(--color-gold);
}

.site-footer__sep {
  color: rgba(233, 196, 106, 0.55);
  font-style: normal;
}

@media (min-width: 480px) {
  .site-footer__text {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.has-contact-animations .contact:not(.contact--revealed) .contact__header > *,
.has-contact-animations .contact:not(.contact--revealed) .contact__hub,
.has-contact-animations .contact:not(.contact--revealed) .contact__meta-item {
  opacity: 0;
  transform: translateY(1.25rem);
}

.has-contact-animations .contact:not(.contact--revealed) .contact__map {
  opacity: 0;
  transform: translateY(1.5rem) scale(0.96);
}

.has-contact-animations .contact:not(.contact--revealed) .contact__map-frame {
  transform: scale(1.08);
}

.has-contact-animations .contact:not(.contact--revealed) .contact__logo-frame,
.has-contact-animations .contact:not(.contact--revealed) .contact__hub-badge,
.has-contact-animations .contact:not(.contact--revealed) .contact__hub-title,
.has-contact-animations .contact:not(.contact--revealed) .contact__hub-text,
.has-contact-animations .contact:not(.contact--revealed) .contact__perk,
.has-contact-animations .contact:not(.contact--revealed) .contact__channel {
  opacity: 0;
}

.has-contact-animations .contact:not(.contact--revealed) .contact__logo-frame {
  transform: translateX(-1.25rem) scale(0.92);
}

.has-contact-animations .contact:not(.contact--revealed) .contact__hub-badge,
.has-contact-animations .contact:not(.contact--revealed) .contact__hub-title,
.has-contact-animations .contact:not(.contact--revealed) .contact__hub-text,
.has-contact-animations .contact:not(.contact--revealed) .contact__perk,
.has-contact-animations .contact:not(.contact--revealed) .contact__channel {
  transform: translateY(1rem);
}

.has-contact-animations .contact:not(.contact--revealed) .contact__channel--wa {
  transform: translateY(1rem) scale(0.96);
}

.contact--revealed .contact__header > * {
  animation: aboutReveal 0.85s var(--ease) forwards;
}

.contact--revealed .contact__header > *:nth-child(1) { animation-delay: 0.06s; }
.contact--revealed .contact__header > *:nth-child(2) { animation-delay: 0.16s; }
.contact--revealed .contact__header > *:nth-child(3) { animation-delay: 0.26s; }
.contact--revealed .contact__header > *:nth-child(4) { animation-delay: 0.36s; }

.contact--revealed .contact__hub {
  animation: contactHubReveal 0.95s var(--ease) 0.28s forwards;
}

.contact--revealed .contact__logo-frame {
  animation: contactHubLogoIn 0.9s var(--ease) 0.52s forwards;
}

.contact--revealed .contact__hub-img {
  animation: contactLogoFloat 4.8s ease-in-out 1.45s infinite;
}

.contact--revealed .contact__hub-badge {
  animation: aboutReveal 0.75s var(--ease) 0.62s forwards,
    contactBadgePulse 3.2s ease-in-out 1.5s infinite;
}

.contact--revealed .contact__hub-title {
  animation: aboutReveal 0.8s var(--ease) 0.72s forwards;
}

.contact--revealed .contact__hub-text {
  animation: aboutReveal 0.8s var(--ease) 0.82s forwards;
}

.contact--revealed .contact__perk {
  animation: aboutReveal 0.7s var(--ease) forwards;
}

.contact--revealed .contact__perk:nth-child(1) { animation-delay: 0.9s; }
.contact--revealed .contact__perk:nth-child(2) { animation-delay: 1s; }
.contact--revealed .contact__perk:nth-child(3) { animation-delay: 1.1s; }

.contact--revealed .contact__perk svg {
  animation: contactPerkIconPop 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}

.contact--revealed .contact__perk:nth-child(1) svg { animation-delay: 1.05s; }
.contact--revealed .contact__perk:nth-child(2) svg { animation-delay: 1.15s; }
.contact--revealed .contact__perk:nth-child(3) svg { animation-delay: 1.25s; }

.contact--revealed .contact__channel {
  animation: aboutReveal 0.8s var(--ease) forwards;
}

.contact--revealed .contact__channel--wa {
  animation: contactChannelWaIn 0.85s cubic-bezier(0.34, 1.45, 0.64, 1) 1.15s forwards,
    contactWaGlow 3.8s ease-in-out 2.1s infinite;
}

.contact--revealed .contact__channel--phone {
  animation-delay: 1.28s;
}

.contact--revealed .contact__meta-item {
  animation: aboutReveal 0.75s var(--ease) forwards;
}

.contact--revealed .contact__meta-item:nth-child(1) { animation-delay: 1.38s; }
.contact--revealed .contact__meta-item:nth-child(2) { animation-delay: 1.48s; }
.contact--revealed .contact__meta-item:nth-child(3) { animation-delay: 1.58s; }

.contact--revealed .contact__map {
  animation: contactMapReveal 1s var(--ease) 1.68s forwards;
}

.contact--revealed .contact__map-frame {
  animation: contactMapZoomIn 1.15s var(--ease) 1.82s forwards;
}

@keyframes contactMapReveal {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contactMapZoomIn {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes contactHubReveal {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contactHubLogoIn {
  from {
    opacity: 0;
    transform: translateX(-1.25rem) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes contactLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes contactChannelWaIn {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contactPerkIconPop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 600px) {
  .contact__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .contact__hub {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .contact__hub-visual {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .contact__hub-img {
    width: 16rem;
  }

  .contact__hub-body {
    padding: clamp(2rem, 3.5vw, 2.5rem) clamp(2rem, 3.5vw, 2.5rem) clamp(2rem, 3.5vw, 2.5rem) 0;
  }

  .contact__channels {
    flex-direction: row;
  }

  .contact__channel {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
  }

  .contact__channel-arrow {
    align-self: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__cta,
  .hero__eyebrow,
  .hero__title,
  .hero__ornament,
  .hero__ornament-line,
  .hero__ornament-icon,
  .hero__lead,
  .hero__features,
  .hero__feature,
  .hero__feature::before,
  .hero__feature::after,
  .site-header__phone,
  .site-nav__link,
  .site-header__burger,
  .site-drawer__link,
  .site-drawer__backdrop,
  .site-drawer__panel {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .hero__feature:hover .hero__feature-icon {
    transform: none;
  }

  .products__card:hover {
    transform: none;
  }

  .products__card:hover .products__card-img {
    transform: none;
  }

  .products__cta:hover {
    transform: none;
  }

  .has-about-animations .about .about__manifest-img,
  .has-about-animations .about .about__manifest-content > *,
  .has-about-animations .about .about__mosaic > *,
  .has-about-animations .about .about__figure,
  .has-about-animations .about .about__path-step,
  .has-about-animations .about .about__cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    border-left-color: var(--color-gold) !important;
    padding-left: 1rem !important;
  }

  .about__cta:hover {
    transform: none;
  }

  .has-why-animations .why .why__header > *,
  .has-why-animations .why .why__reason,
  .has-why-animations .why .why__divider,
  .has-why-animations .why .why__process-lead,
  .has-why-animations .why .why__step {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .has-why-animations .why .why__divider--testimonials,
  .has-why-animations .why .why__testimonials {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .why__carousel-track {
    transition: none;
  }

  .why__carousel-btn:hover {
    transform: none;
  }

  .why__reason:hover {
    transform: none;
  }

  .why__reason:hover::after {
    animation: none;
    opacity: 0;
  }

  .why__reason:hover .why__reason-icon {
    transform: none;
  }

  .why:hover .why__ornament-icon,
  .why:hover .why__divider-label,
  .why:hover .why__ornament-line,
  .why:hover .why__divider-line {
    transform: none;
  }

  .why__step:hover {
    transform: none;
    background: transparent;
  }

  .why__step:hover::before {
    transform: none;
  }

  .why__step:hover .why__step-num {
    transform: none;
  }

  .has-faq-animations .faq .faq__header > *,
  .has-faq-animations .faq .faq__item,
  .has-faq-animations .faq .faq__footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .faq__answer {
    transition: none;
  }

  .faq__cta:hover {
    transform: none;
  }

  .has-contact-animations .contact .contact__header > *,
  .has-contact-animations .contact .contact__hub,
  .has-contact-animations .contact .contact__logo-frame,
  .has-contact-animations .contact .contact__hub-badge,
  .has-contact-animations .contact .contact__hub-title,
  .has-contact-animations .contact .contact__hub-text,
  .has-contact-animations .contact .contact__perk,
  .has-contact-animations .contact .contact__perk svg,
  .has-contact-animations .contact .contact__channel,
  .has-contact-animations .contact .contact__hub-img,
  .has-contact-animations .contact .contact__meta-item,
  .has-contact-animations .contact .contact__map,
  .has-contact-animations .contact .contact__map-frame {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .contact__hub::before,
  .contact__hub-visual::before,
  .contact__hub-badge,
  .contact__channel--wa,
  .contact__map::after {
    animation: none !important;
  }

  .contact__map::after {
    opacity: 0.72;
  }

  .contact__channel:hover,
  .contact__meta-item:hover,
  .contact__perk:hover {
    transform: none;
  }

  .contact__channel:hover .contact__channel-icon,
  .contact__perk:hover svg {
    transform: none;
  }

  .contact__logo-frame::after {
    animation: none;
    opacity: 0.7;
  }

  .fab-wa__ring {
    animation: none;
    opacity: 0.35;
    transform: none;
  }

  .fab-wa:hover,
  .fab-wa:active,
  .fab-wa-popup__cta:hover {
    transform: none;
  }
}
