/* ========================================
   VARIABLES / TOKENS
======================================== */

:root {
  --font-display: "berthold-block-w1g-excond", sans-serif;
  --font-body: "Inter", sans-serif;

  --color-white: #ffffff;
  --color-dark: #1d1d1d;

  --color-cyan: #67f4ff;
  --color-cyan-dark: #00b7c7;

  --color-pink: #ff2ca8;
  --color-pink-dark: #bb1178;

  --color-lime: #9de857;
  --color-lime-dark: #7d9800;

  --color-purple: #a600d6;
  --color-purple-dark: #6f0091;

  --color-orange: #ff7c09;
  --color-orange-dark: #944602;
  --color-teal-stroke: #22deb6;
}

/* ========================================
   BASE GLOBAL
======================================== */

body {
  font-family: var(--font-body);
  color: var(--color-white);
  background-color: var(--color-teal-stroke);
}

html {
  scroll-padding-top: 5.5rem;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   HERO
======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 8rem;
  background: linear-gradient(180deg, var(--color-lime) 0%, var(--color-teal-stroke) 100%);
  isolation: isolate;
}

.hero-container {
  position: relative;
  z-index: 3;
}

/* Logo flotante */
.hero-logo-wrap {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: min(230px, 44vw);
  display: none;
}

.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Patrón */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../assets/patterns/pattern-wave.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Copy */
.hero-copy {
  position: relative;
  z-index: 4;
  padding-top: 2.5rem;
  max-width: 40rem;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;

}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--color-white);
  text-transform: uppercase;
  text-wrap: balance;

  text-shadow: 0 6px 0 rgba(0, 138, 126, 0.22);
}

.hero-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.6rem, 2rem, 2.3rem);
  line-height: 1.35;
  color: var(--color-white);
}

/* Botón pill */
.btn-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn-pill-cyan {
  color: var(--color-white);
  background: var(--color-purple);
  box-shadow: 0 7px 0 var(--color-purple-dark);
}

.hero-actions {
  margin-top: 1.35rem;
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-badges p {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 800;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Visual */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  z-index: 4;
  align-items: center;
  justify-content: center;
}

/* Ola inferior */
.hero-wave-bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 145px;
  color: var(--color-orange);
  z-index: 5;
  display: block;
}

/* Reveal base */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 7.5rem;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--color-white);
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-scroll-icon {
  font-size: 1.4rem;
  line-height: 1;
}

@keyframes heroScrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}


/* ========================================
   NAVBAR
======================================== */

.site-header,
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 0 !important;
  padding: 1rem 1.25rem 0;
  background: transparent;
  pointer-events: none;
}

.navbar-left,
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
}

.navbar-link {
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-logo {
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  pointer-events: auto;
}

.navbar-logo-img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  pointer-events: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--color-purple);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  width: min(92vw, 420px);
  margin: 0.85rem auto 0;
  padding: 0.9rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  pointer-events: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-link {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: var(--color-dark);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-link+.mobile-menu-link {
  margin-top: 0.45rem;
}

.mobile-menu-link:hover {
  background: rgba(166, 0, 214, 0.08);
}


/* ========================================
   HERO PRODUCT (FINAL PRO)
======================================== */

.hero-product-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* =====================
   VASOS
===================== */

.hero-product-main {
  position: relative;
  z-index: 1;
  width: min(70%, 720px);
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.18));
  animation: floatCups 6s ease-in-out infinite;
}

/* animación sutil vasos */
@keyframes floatCups {

  0%,
  100% {
    transform: translateY(0px) rotate(9deg);
  }

  50% {
    transform: translateY(-10px) rotate(11deg);
  }
}

/* =====================
   FRUTAS CONTENEDOR
===================== */

.hero-product-fruits {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  height: 160px;
  pointer-events: none;
  z-index: 2;
}

/* =====================
   BASE FRUTAS
===================== */

.hero-fruit {
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.18));
}

/* =====================
   ANIMACIONES
===================== */

/* más fuerte */
@keyframes floatFruitA {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* más suave */
@keyframes floatFruitB {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* con drift lateral */
@keyframes floatFruitC {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-10px) translateX(4px);
  }
}

@keyframes floatFruitD {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-9px) translateX(-4px);
  }
}

/* =====================
   FRUTAS INDIVIDUALES
===================== */

.about-fruits .hero-fruit-1,
.faq-fruits .hero-fruit-1 {
  left: 0%;
  bottom: 10%;
  width: 120px;
  transform: rotate(352deg);
  animation: floatFruitA 4.8s ease-in-out infinite 0.2s;
}

.about-fruits .hero-fruit-2,
.faq-fruits .hero-fruit-2 {
  left: 20%;
  bottom: 0%;
  width: 130px;
  transform: rotate(356deg) scaleX(-1);
  animation: floatFruitD 5.6s ease-in-out infinite 0.8s;
}

.about-fruits .hero-fruit-3,
.faq-fruits .hero-fruit-3 {
  left: 10%;
  bottom: 5%;
  width: 80px;
  transform: rotate(343deg) scaleX(-1);
  animation: floatFruitC 4.2s ease-in-out infinite 1.1s;
}

.about-fruits .hero-fruit-4,
.faq-fruits .hero-fruit-4 {
  left: 32%;
  bottom: 1%;
  width: 100px;
  animation: floatFruitB 5.1s ease-in-out infinite 0.4s;
}

.about-fruits .hero-fruit-5,
.faq-fruits .hero-fruit-5 {
  right: 0%;
  bottom: 8%;
  width: 130px;
  transform: scaleX(-1);
  animation: floatFruitD 6s ease-in-out infinite 1.3s;
}

.about-fruits .hero-fruit-6,
.faq-fruits .hero-fruit-6 {
  right: 20%;
  bottom: 8%;
  width: 120px;
  animation: floatFruitC 4.6s ease-in-out infinite 0.7s;
}

.about-fruits .hero-fruit-7,
.faq-fruits .hero-fruit-7 {
  left: 42%;
  bottom: -10%;
  width: 120px;
  animation: floatFruitA 5.8s ease-in-out infinite 1.6s;
}

.about-fruits .hero-fruit-8,
.faq-fruits .hero-fruit-8 {
  right: 5%;
  bottom: 8%;
  width: 100px;
  animation: floatFruitB 4.9s ease-in-out infinite 0.9s;
}

/* ========================================
   SABORES
======================================== */

.flavors-section {
  position: relative;
  padding: 4.25rem 0 4.25rem;
  background: var(--color-orange);
  overflow: hidden;
}

.flavors-container {
  position: relative;
  z-index: 2;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-white);

  text-shadow: 0 5px 0 rgba(0, 138, 126, 0.2);
}

.section-subtitle {
  margin: 0.75rem auto 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-white);
}

.flavors-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.flavors-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 3.25rem;
}

/* Card base */
.flavor-card {
  height: 100%;
  border-radius: 2rem;
  overflow: visible;
  position: relative;
  padding: 0.4rem;
  perspective: 1200px;
  cursor: pointer;
  transition: transform 0.28s ease;
}

.flavor-card:hover {
  transform: translateY(-6px);
}

.flavor-card-inner {
  height: 100%;
  border-radius: 1.75rem;
  padding: 1.35rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  min-height: 100%;
}

.flavor-flip-inner {
  position: relative;
  height: 100%;
  min-height: 100%;
  border-radius: 1.75rem;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.flavor-card.is-flipped .flavor-flip-inner {
  transform: rotateY(180deg);
}

.flavor-face {
  min-height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flavor-face-front {
  position: relative;
}

.flavor-face-back {
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  padding: 1.45rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  background: var(--color-white);
  color: var(--color-purple-dark);
  box-shadow: 5px 10px 0 rgba(86, 0, 105, 0.22);
  transform: rotateY(180deg);
}

.flavor-card-pink .flavor-face-back {
  color: var(--color-pink-dark);
}

.flavor-card-lime .flavor-face-back {
  color: #4d7600;
}

.flavor-card-purple .flavor-face-back {
  color: var(--color-purple-dark);
}

.flavor-back-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 214, 171, 0.14);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
}

.flavor-back-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.6vw, 3.35rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.flavor-back-copy {
  margin: 0;
  max-width: 18rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 700;
  line-height: 1.38;
  color: #26413b;
}

.flavor-back-hint {
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(38, 65, 59, 0.68);
}

.flavor-hint-hover {
  display: none;
}

/* Variantes */
.flavor-card-pink .flavor-card-inner {
  background: #ff0b61;
  /* background: #ff36b4; */
  box-shadow: 5px 10px 0 var(--color-pink-dark);
}

.flavor-card-lime .flavor-card-inner {
  background: #9cc800;
  box-shadow: 5px 10px 0 var(--color-lime-dark);
}

.flavor-card-purple .flavor-card-inner {
  background: #c7229a;
  /* linear-gradient(180deg, #c100d8 0%, #9300b1 100%) */
  box-shadow: 5px 10px 0 var(--color-purple-dark);
}

/* Títulos card */
.flavor-name {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 4px 0 rgba(0, 138, 126, 0.18);
}

/* Imagen pack */
.flavor-pack-wrap {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.flavor-pack {
  position: relative;
  z-index: 2;
  width: min(78%, 250px);
  max-height: 255px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.18));
  transition: transform 0.25s ease;
}

.flavor-card:hover .flavor-pack {
  transform: scale(1.03);
}

/* Ingredientes decorativos */
.flavor-ingredient {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.14));
}

.flavor-ingredient-left {
  width: clamp(44px, 5vw, 72px);
  left: 10%;
  bottom: 10%;
  transform: rotate(-12deg);
}

.flavor-ingredient-right {
  width: clamp(46px, 5vw, 76px);
  right: 10%;
  bottom: 6%;
  transform: rotate(14deg);
}

/* Texto */
.flavor-description {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-white);
  max-width: 18rem;
  margin-inline: auto;
}

.flavor-click-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* espacio entre texto e icono */
  margin-top: 10px;
}

.click-text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.flavor-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.flavor-icon {
  animation: clickPulse 1.2s infinite ease-in-out;
}

.flavor-click-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.click-text {
  margin: 0;
  line-height: 1;
}

.flavor-click-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.91px;
  stroke-miterlimit: 10;
  flex: 0 0 auto;
  animation: clickIconPulse 1.4s ease-in-out infinite;
}

@keyframes clickIconPulse {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.08);
  }
}

@keyframes clickPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ========================================
   ABOUT / ¿QUÉ ES BLENDIES?
======================================== */

.about-section {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: var(--color-pink);
  isolation: isolate;
}

.about-pattern {
  position: absolute;
  inset: 0;

  background-color: var(--color-orange);
  /* aquí cambias color */

  -webkit-mask-image: url("../assets/patterns/diagonal-pattern.svg");
  mask-image: url("../assets/patterns/diagonal-pattern.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: cover;
  mask-size: cover;

  -webkit-mask-position: center;
  mask-position: center;
}

.about-container {
  position: relative;
  z-index: 3;
}

.about-copy {
  position: relative;
  padding-bottom: 80px;
}

.about-copy-card {
  position: relative;
  max-width: 31rem;
  padding: 1.5rem 1.4rem 1.4rem;
  background: var(--color-pink);
  box-shadow: 0 12px 0 var(--color-pink-dark);
  border-radius: 1.8rem;
}

.about-title {
  margin-bottom: 0.85rem;
  text-align: left;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.about-fruits {
  position: absolute;
  left: 50%;
  top: -6%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  pointer-events: none;
  z-index: 2;
}

.about-pod {
  position: absolute;
  right: 24%;
  bottom: -26%;
  width: 200px;
  max-width: 42%;
  z-index: 4;
  pointer-events: none;
  animation: floatFruitB 4.8s ease-in-out infinite 0.2s;
}

.about-pod img {
  display: block;
  width: 100%;
  height: auto;
}

.about-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-white);
  max-width: 26rem;
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.about-shaker {
  position: absolute;
  right: -12vw;
  bottom: -17vh;
  z-index: 4;
  width: min(74vw, 590px);
  max-height: 800px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.18));
  transform: rotate(-55deg);
}

.benefits-marquee {
  position: relative;
  width: 100%;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.25rem 0;
}

.benefits-marquee::before,
.benefits-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 42px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.benefits-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-pink), transparent);
}

.benefits-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-pink), transparent);
}

.benefits-track {
  display: flex;
  width: max-content;
  gap: 0.65rem;
  animation: benefitsMarquee 30s linear infinite;
}

.benefit-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--color-purple);
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(0.82rem, 1.25vw, 0.95rem);
  line-height: 1.1;
  white-space: nowrap;
}

.benefits-marquee:hover .benefits-track {
  animation-play-state: paused;
}

@keyframes benefitsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   ANIMACIONES GLOBALES SUAVES
======================================== */

.float-idle {
  animation: floatIdle 4.8s ease-in-out infinite;
}

.float-idle-strong {
  animation: floatIdleStrong 5.4s ease-in-out infinite;
}

@keyframes floatIdle {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes floatIdleStrong {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

/* reveal que sirve al bajar y subir */
.loop-reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.loop-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ========================================
   HOW IT WORKS / SÚPER FÁCIL
======================================== */

.how-section {
  position: relative;
  padding: clamp(3rem, 5vw, 4.1rem) 0 clamp(2.8rem, 5vw, 4.2rem);
  background: linear-gradient(180deg, var(--color-pink) 0%, #c900c9 55%, var(--color-purple) 100%);
  isolation: isolate;
  overflow: hidden;
}

.how-container {
  position: relative;
  z-index: 3;
}

.how-heading {
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.how-title {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.1rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: none;
}

.how-steps-row {
  position: relative;
  z-index: 3;
}

.how-steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  flex-wrap: nowrap;
  max-width: 1180px;
  margin-inline: auto;
}

.how-step {
  position: relative;
  flex: 1 1 0;
  width: min(100%, 305px);
  min-width: 0;
  text-align: center;
  z-index: 3;
}

.how-step-decor-layer {
  position: absolute;
  inset: -54px -46px 42px -46px;
  pointer-events: none;
  z-index: 4;
}

.how-step-circle {
  position: relative;
  width: clamp(185px, 17vw, 235px);
  height: clamp(185px, 17vw, 235px);
  margin: 0 auto 1.85rem;
  border-radius: 50%;
  background: #00b58c;
  box-shadow: none;
  overflow: visible;
  z-index: 2;
}

/* Paso 1 packs */
.how-step-pack {
  position: absolute;
  width: clamp(200px, 18.6vw, 270px);
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-10deg);
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.18));
  z-index: 3;
}

/* Paso 2 pod */
.how-step-pod {
  position: absolute;
  width: clamp(150px, 15vw, 180px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(0, 0, 0, 0.18));
  z-index: 3;
}

/* Paso 3 cups */
.how-step-cup {
  position: absolute;
  width: clamp(100px, 10vw, 150px);
  bottom: 12px;
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(0, 0, 0, 0.18));
  z-index: 3;
}

.how-step-cup-left {
  left: -18px;
  transform: rotate(-8deg);
}

.how-step-cup-center {
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%) scale(1.14);
  z-index: 4;
}

.how-step-cup-right {
  right: -18px;
  transform: rotate(8deg);
}

/* texto pasos */
.how-step-content {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  width: 100%;
}

.how-step-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  line-height: 0.92;
  color: var(--color-white);
  text-shadow: none;
}

.how-step-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.4vw, 3.15rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: none;
}

/* flechas */
.how-arrow {
  flex: 0 0 clamp(64px, 8vw, 108px);
  width: clamp(64px, 8vw, 108px);
  min-width: clamp(64px, 8vw, 108px);
  height: clamp(185px, 17vw, 235px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: clamp(-1.2rem, -1vw, -0.4rem);
  z-index: 5;
}

.how-arrow-img {
  width: clamp(76px, 10vw, 120px);
  min-width: 0;
  max-width: none;
  object-fit: contain;
  opacity: 1;
  filter: saturate(1.4) brightness(1.1);
}

.how-arrow-1 .how-arrow-img {
  transform: rotate(235deg);
  margin-top: 4.5rem;
}

.how-arrow-2 .how-arrow-img {
  transform: rotate(292deg) scaleX(-1);
  margin-top: -2.2rem;
}

/* idle */
.how-step-circle img,
.how-arrow-img {
  animation: howFloat 4.8s ease-in-out infinite;
}

.how-step:nth-child(1) .how-step-circle img {
  animation-delay: 0.1s;
}

.how-step:nth-child(3) .how-step-circle img {
  animation-delay: 0.2s;
}

@keyframes howFloat {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

/* Doodles */
.how-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.how-decor-green-left {
  width: clamp(54px, 9vw, 150px);
  left: -18px;
  bottom: 4px;
  transform: rotate(95deg);
}

.how-decor-orange-top {
  width: clamp(58px, 7vw, 96px);
  right: 6px;
  top: -4px;
  transform: rotate(7deg);
}

.how-decor-pink-right {
  width: clamp(76px, 8vw, 116px);
  right: -22px;
  top: 6px;
  transform: rotate(8deg);
}

.how-decor-coral-left {
  width: clamp(70px, 8vw, 90px);
  left: 6px;
  top: 42px;
  transform: rotate(180deg);
}

.how-decor-green-bottom {
  width: clamp(80px, 9vw, 126px);
  left: -24px;
  bottom: -2px;
  transform: rotate(-4deg);
}

.how-decor-pink-top {
  width: clamp(88px, 10vw, 138px);
  right: -32px;
  top: -6px;
  transform: rotate(119deg);
}

.how-decor-pink-splash {
  width: clamp(54px, 9vw, 150px);
  left: 30%;
  top: -20px;
  transform: translateX(-98%) rotate(-5deg);
}

.how-decor-green-splash {
  width: clamp(54px, 7vw, 94px);
  right: 12px;
  bottom: 2px;
  transform: rotate(233deg);
}

.how-decor-green-rays {
  width: clamp(66px, 8vw, 112px);
  right: -28px;
  top: -32px;
  transform: rotate(8deg);
}

/* fondo */
.how-bg-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
}

.how-bg-decor-left {
  left: 2vw;
  top: 24%;
}

.how-bg-decor-right {
  right: 4vw;
  top: 16%;
}

.how-bg-decor-img {
  width: clamp(72px, 10vw, 140px);
  height: auto;
  display: block;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.benefits-list li {
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  line-height: 1.25;
}

.how-video-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto 3rem;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 0 rgba(111, 0, 145, 0.28);
}

.how-video {
  width: 100%;
  border: 0;
  display: block;
  background: #000000;
}

.how-video-desktop {
  aspect-ratio: 16 / 9;
}

.how-video-mobile {
  display: none;
  aspect-ratio: 9 / 16;
}

/* =========================
   PUNTOS DE VENTA
========================= */

.stores-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-teal-stroke) 0%, var(--color-lime) 100%);
  min-height: 720px;
  padding: 10rem 0 10rem;
  isolation: isolate;
  color: #ffffff;
}

/* Waves */
.stores-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 140px;
  color: var(--color-purple);
  /* color de la sección anterior/superior */
  z-index: 3;
  pointer-events: none;
}

.stores-wave-top {
  top: 0;
  transform: translateY(-1px) scaleY(-1);
  transform-origin: center;
}

.stores-wave-bottom {
  bottom: 0;
  height: 120px;
  color: #ffaf5a;
  z-index: 1;
  /* o el color de la siguiente sección */
}

/* Patrón del fondo */
.stores-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../assets/patterns/pattern-wave.svg") no-repeat center;
  background-size: cover;
  transform: scaleY(-1) scaleX(-1);
}

/* Contenido */
.stores-content {
  position: relative;
  z-index: 4;
}

.stores-fruit-visual {
  position: absolute;
  width: min(44vw, 540px);
  z-index: 2;
  pointer-events: none;
  bottom: -7%;
  left: 12%;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;

}

.stores-fruit-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 10%;
  width: 58%;
  height: 20%;
  z-index: -1;
}

.stores-fruit-visual img,
.stores-fruit-img {
  width: 90%;
  height: auto;
  display: block;
  transform-origin: center center;
  animation: storesFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes storesFloat {
  0% {
    transform: translateY(0px) rotate(-1deg) scaleX(-1) scale(1);
  }

  25% {
    transform: translateY(-8px) rotate(0.5deg) scaleX(-1) scale(1.01);
  }

  50% {
    transform: translateY(-14px) rotate(1deg) scaleX(-1) scale(1.015);
  }

  75% {
    transform: translateY(-7px) rotate(0deg) scaleX(-1) scale(1.01);
  }

  100% {
    transform: translateY(0px) rotate(-1deg) scaleX(-1) scale(1);
  }
}

@keyframes storesFloatMobile {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.01);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

/* Título */
.stores-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 2rem;
  color: #ffffff;
  text-shadow: none;
}

.stores-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================
   STORES CARDS FLIP
========================= */

.stores-cards-wrap {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  overflow: hidden;
  position: relative;
}

.store-flip-card {
  flex: 0 0 auto;
  width: 500px;
  height: 200px;
}

.store-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.store-flip-card.is-flipped .store-flip-inner {
  transform: rotateY(180deg);
}

.store-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.store-face-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 1.4rem 2rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-face-front:hover {
  transform: translateY(-4px);
}

.store-face-back {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 1rem;
  transform: rotateY(180deg);
}

.store-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 230px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
}

.store-btn-primary {
  background: var(--color-purple);
  color: var(--color-white);
}

.store-btn-secondary {
  background: var(--color-pink);
  color: var(--color-white);
}

/* indicador discreto de interacción */


/* ========================================
   FAQS NUEVO LAYOUT
======================================== */

.faq-section {
  position: relative;
  padding: 6rem 0 6rem;
  background: #ffaf5a;
  isolation: isolate;
}

.faq-container {
  position: relative;
  z-index: 3;
}

.faq-hero {
  margin-bottom: 2.5rem;
}

.faq-copy {
  max-width: 560px;
}

.faq-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 5px 0 rgba(0, 138, 126, 0.12);
}

.faq-fruits {
  bottom: 4%;
  left: 58%;
}

.faq-subtitle {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
}

/* visual derecha */
.faq-visual {
  position: relative;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}

.faq-visual-card {
  position: relative;
  border-radius: 2rem;
  padding: 1rem;
}

.faq-visual-card::before {
  content: "";
  position: absolute;
  inset: auto 10% 4% 10%;
  height: 20%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0) 72%);
  filter: blur(18px);
  z-index: 0;
}

.faq-visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  display: block;
  height: auto;
  object-fit: contain;
  animation: faqVisualFloat 5.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes faqVisualFloat {
  0% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(-1deg);
  }
}

.faq-pills-shell {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Interacciones horizontales compartidas */
.faq-pills,
.stores-cards-wrap {
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.faq-pills.is-dragging,
.stores-cards-wrap.is-dragging {
  cursor: grabbing;
}

.faq-pills>*,
.stores-cards-wrap>* {
  user-select: none;
}

/* pills */
.faq-pills {
  display: flex;
  gap: 0.7rem;

  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;

  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.faq-pills::-webkit-scrollbar {
  display: none;
}

.faq-pills::before,
.faq-pills::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
  z-index: 2;
}

/* fades en el wrapper, no en el scroll */
.faq-pills-shell::before,
.faq-pills-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  pointer-events: none;
  z-index: 3;
}

.faq-pills-shell::before {
  left: 0;
  background: linear-gradient(to right, #ffaf5a, transparent);
}

.faq-pills-shell::after {
  right: 0;
  background: linear-gradient(to left, #ffaf5a, transparent);
}

.faq-pill {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.15rem;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 800;
  flex: 0 0 auto;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.70s ease, color 0.22s ease;
}

.faq-pill:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.faq-pill.is-active {
  background: var(--color-purple);
  color: #ffffff;
}

/* panel respuesta */
.faq-panel-wrap {
  position: relative;
  min-height: 170px;
}

.faq-panel {
  display: none;
  border-radius: 1.8rem;
  padding: 1.5rem 1.4rem;
  background: #ffffff;
  border: 2px solid rgba(255, 112, 163, 0.12);
  box-shadow: 0 10px 0 rgba(255, 122, 0, 0.08);
}

.faq-panel.is-active {
  display: block;
  animation: faqPanelIn 0.3s ease;
}

@keyframes faqPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-panel-title {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 1.3;
  color: var(--color-dark);
}

.faq-panel-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark);
}

.faq-panel-text a {
  color: var(--color-purple);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  transition: opacity 0.2s ease;
}

.faq-panel-text a:hover {
  opacity: 0.7;
}


/* ========================================
   CTA FINAL / LA HUERTA
======================================== */

.cta-final-section {
  position: relative;
  background: #054a20;
  color: #ffffff;
  padding: 8rem 0 6rem;
  isolation: isolate;
}

/* transición superior */
.cta-final-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  color: #ffaf5a;
  /* color de la sección FAQ */
  transform: translateY(-98%);
  z-index: 2;
  pointer-events: none;
}

.cta-final-top-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* textura/glow muy sutil */
.cta-final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(53, 180, 74, 0.16), transparent 30%),
    radial-gradient(circle at 80% 75%, rgba(231, 230, 41, 0.08), transparent 28%);
  z-index: 0;
  pointer-events: none;
}

.cta-final-container {
  position: relative;
  z-index: 3;
}

.cta-final-content {
  margin-inline: auto;
}

.cta-final-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: #ffffff;
}

.cta-final-subtitle {
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: var(--color-white);
}

.cta-final-brandmark {
  margin: 2.2rem auto 2rem;
}

.cta-final-logo {
  width: min(100%, 520px);
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn-pill-light {
  background: #ffffff;
  color: #092b0d;
}

.btn-pill-light:hover {
  opacity: 0.9;
}

.btn-pill-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: #ffffff;
}

.btn-pill-outline-light:hover {
  background: #ffffff;
  color: #092b0d;
}

.cta-final-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA redes sociales */
.btn-pill-social {
  position: relative;
  padding-right: 2.8rem;
}

/* =========================
   CTA SOCIAL
========================= */
/* iconos svg */
.cta-icon {
  width: 20px;
  height: 20px;
  fill: #092b0d;
  transition: fill 0.2s ease, transform 0.2s ease;
}

.cta-final-social {
  margin-top: 2rem;
  text-align: center;
}

.cta-social-text {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

/* iconos */
.cta-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cta-social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #092b0d;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* iconito */
.btn-pill-social::after {
  content: "→";
  position: absolute;
  right: 1.2rem;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

/* hover con intención */
.btn-pill-social:hover::after {
  transform: translateX(4px);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  position: relative;
  padding: 2.6rem 0 1.2rem;
  background: #1d1d1d;
  color: var(--color-white);
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-logo {
  width: min(180px, 38vw);
  height: auto;
  object-fit: contain;
}

.footer-text {
  margin: 0;
  max-width: 18rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  justify-content: center;
}

.footer-nav a,
.footer-link {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-white);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover,
.footer-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff7b12;
  box-shadow: 0 5px 0 #d85f00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-white);
  transition: transform 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ========================================
   MEDIA QUERIES / RESPONSIVE GLOBAL
======================================== */

/* STORES CARDS FLIP - interacciones */
@media (hover: hover) and (pointer: fine) {
  .flavor-card:hover .flavor-flip-inner {
    transform: rotateY(180deg);
  }

  .flavor-card.is-flipped .flavor-flip-inner {
    transform: rotateY(180deg);
  }

  .flavor-hint-touch {
    display: none;
  }

  .flavor-hint-hover {
    display: inline;
  }

  .store-flip-card:hover .store-flip-inner {
    transform: rotateY(180deg);
  }

  .store-flip-card.is-flipped .store-flip-inner {
    transform: rotateY(180deg);
  }
}

/* ========================================
   RESPONSIVE <= 1199.98px
======================================== */

@media (max-width: 1199.98px) {

  /* SABORES */
  .flavor-pack-wrap {
    min-height: 240px;
  }

  /* HOW */
  .how-steps {
    gap: 1.1rem;
  }

  .how-step {
    width: min(100%, 250px);
  }

  .how-arrow {
    flex-basis: 68px;
    width: 68px;
    min-width: 68px;
  }

  .how-arrow-img {
    width: 78px;
  }
}

/* ========================================
   RESPONSIVE <= 991.98px
======================================== */

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 4.75rem;
  }

  /* NAVBAR */
  .navbar {
    padding: 0.9rem 1rem 0;
  }

  .navbar-left,
  .navbar-right {
    display: none;
  }

  .navbar {
    justify-content: space-between;
    pointer-events: auto;
  }

  .navbar-logo {
    position: static;
    transform: none;
  }

  .navbar-logo-img {
    height: 44px;
  }

  .hamburger {
    display: inline-flex;
    flex-direction: column;
  }

  /* SABORES */
  .flavors-section {
    padding-top: 3.5rem;
  }

  .flavors-heading {
    margin-bottom: 2rem;
  }

  .flavors-grid {
    padding-bottom: 2.5rem;
  }

  .flavor-card-inner {
    padding: 1.2rem 1rem 1.1rem;
  }

  .flavor-face-back {
    padding: 1.25rem 1.05rem 1.1rem;
  }

  .flavor-pack-wrap {
    min-height: 220px;
  }

  .flavor-pack {
    width: min(74%, 220px);
    max-height: 220px;
  }

  /* ABOUT */
  .about-section {
    padding: 4rem 0 4.25rem;
  }

  .about-copy-card {
    margin-inline: auto;
    max-width: 100%;
  }

  .about-title {
    text-align: left;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-shaker {
    width: min(100%, 273px);
    max-height: 700px;
  }

  /* HOW */
  .how-section {
    padding-inline: 0.4rem;
  }

  .how-title {
    font-size: clamp(2.8rem, 7vw, 4.4rem);
  }

  .how-steps {
    gap: 0.8rem;
  }

  .how-step {
    width: min(100%, 210px);
  }

  .how-step-circle {
    width: 168px;
    height: 168px;
    margin-bottom: 1.35rem;
  }

  .how-step-pack {
    width: 188px;
  }

  .how-step-pod {
    width: 152px;
  }

  .how-step-cup {
    width: 86px;
  }

  .how-arrow {
    flex-basis: 42px;
    width: 42px;
    min-width: 42px;
    height: 168px;
  }

  .how-arrow-img {
    width: 60px;
  }

  .how-decor {
    opacity: 0.86;
  }

  .how-decor-green-left,
  .how-decor-orange-top,
  .how-decor-pink-right,
  .how-decor-coral-left,
  .how-decor-green-bottom,
  .how-decor-pink-top,
  .how-decor-pink-splash,
  .how-decor-green-splash,
  .how-decor-green-rays {
    scale: 0.82;
  }

  /* STORES CARDS FLIP */
  .stores-cards-wrap {
    gap: 1rem;
  }

  .store-flip-card {
    width: min(100%, 290px);
    height: 122px;
  }

  .store-face {
    border-radius: 24px;
  }

  .stores-section {
    min-height: auto;
    padding: 8rem 0 8rem;
  }

  .stores-fruit-visual {
    position: relative;
    width: min(88vw, 420px);
    bottom: auto;
    left: auto;
    margin: 1rem auto 2.5rem;
    transform: translateY(calc(var(--parallax-y, 0px) * 0.35));
  }

  .stores-fruit-visual img,
  .stores-fruit-img {
    width: 100%;
    animation: storesFloatMobile 5.5s ease-in-out infinite;
  }

  .stores-title {
    text-align: center;
  }

  .stores-logo {
    max-width: 180px;
  }

  .stores-wave {
    height: 90px;
  }

  /* FAQS NUEVO LAYOUT */
  .faq-section {
    padding: 4.8rem 0 4.8rem;
  }

  .faq-hero {
    margin-bottom: 2rem;
  }

  .faq-copy {
    text-align: center;
    margin-inline: auto;
  }

  .faq-subtitle {
    margin-inline: auto;
  }

  .faq-visual-card {
    max-width: 460px;
    margin-inline: auto;
  }

  .faq-pills {
    gap: 0.7rem;
  }

  /* CTA SOCIAL */
  .cta-final-section {
    padding: 7rem 0 5.2rem;
  }

  .cta-final-top-shape {
    height: 130px;
  }

  .cta-final-logo {
    width: min(100%, 420px);
  }

  /* FOOTER */
  .site-footer {
    padding: 2.4rem 0 1.15rem;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-text {
    max-width: 24rem;
  }

  .footer-contact {
    align-items: center;
  }
}

/* ========================================
   RESPONSIVE <= 767.98px
======================================== */

@media (max-width: 767.98px) {

  /* HOW */
  .how-section {
    padding: 3.3rem 0 3.8rem;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .how-step {
    width: 100%;
    max-width: 300px;
  }

  .how-step-circle {
    width: min(62vw, 218px);
    height: min(62vw, 218px);
  }

  .how-step-pack {
    width: min(72vw, 250px);
  }

  .how-step-pod {
    width: min(62vw, 205px);
  }

  .how-step-cup {
    width: min(28vw, 112px);
  }

  .how-arrow {
    width: 76px;
    min-width: 76px;
    height: 48px;
    margin: -0.25rem 0 0.4rem;
  }

  .how-arrow-img {
    width: 68px;
    transform: rotate(35deg) !important;
    margin: 0 !important;
  }

  .how-arrow-2 .how-arrow-img {
    transform: rotate(145deg) scaleX(-1) !important;
  }

  .how-bg-decor {
    opacity: 0.1;
  }

  .how-step-decor-layer {
    inset: -44px -36px 38px -36px;
  }
}

/* ========================================
   RESPONSIVE <= 575.98px
======================================== */

@media (max-width: 575.98px) {
  html {
    scroll-padding-top: 4.25rem;
  }

  /* NAVBAR */
  .navbar {
    padding: 0.75rem 0.85rem 0;
  }

  .navbar-logo-img {
    height: 38px;
  }

  .mobile-menu {
    width: calc(100vw - 1.5rem);
  }

  .btn-pill {
    min-height: 50px;
    padding: 0.82rem 1.2rem;
    font-size: 0.92rem;
  }

  .hero-badges {
    gap: 0.65rem;
    justify-content: space-between !important;
  }

  .hero-badges p {
    font-size: 0.7rem;
  }

  /* SABORES */
  .flavors-section {
    padding-top: 3rem;
  }

  .section-title {
    text-shadow: 0 3px 0 rgba(0, 138, 126, 0.18);
  }

  .flavors-heading {
    margin-bottom: 1.7rem;
  }

  .flavor-card {
    border-radius: 1.5rem;
  }

  .flavor-card-inner {
    border-radius: 1.35rem;
    padding: 1.1rem 0.9rem 1rem;
  }

  .flavor-flip-inner,
  .flavor-face-back {
    border-radius: 1.35rem;
  }

  .flavor-name {
    margin-bottom: 0.8rem;
  }

  .flavor-pack-wrap {
    min-height: 200px;
    margin-bottom: 0.85rem;
  }

  .flavor-pack {
    width: min(72%, 190px);
    max-height: 190px;
  }

  .flavor-description {
    font-size: 0.95rem;
    max-width: 17rem;
  }

  .flavor-back-title {
    font-size: 2.25rem;
  }

  .flavor-back-copy {
    font-size: 0.98rem;
    max-width: 16.5rem;
  }

  /* ABOUT */
  .about-section {
    padding: 3.4rem 0 3.8rem;
  }

  .about-pattern {
    background-size: cover;
    opacity: 0.38;
  }

  .about-copy-card {
    border-radius: 1.4rem;
    padding: 1.2rem 1rem 1.05rem;
    box-shadow: 0 9px 0 rgba(184, 19, 106, 0.4);
  }

  .about-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    margin-bottom: 0.65rem;
    text-shadow: 0 3px 0 rgba(0, 138, 126, 0.18);
  }

  .about-text {
    font-size: 0.98rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .about-visual {
    min-height: 320px;
    margin-top: -0.5rem;
  }

  .about-shaker {
    width: min(100%, 300px);
    max-height: 700px;
  }

  /* HOW */
  .how-section {
    padding: 3rem 0 3.5rem;
  }

  .how-heading {
    margin-bottom: 1.8rem;
  }

  .how-step-circle {
    width: min(64vw, 190px);
    height: min(64vw, 190px);
    margin-bottom: 1.25rem;
  }

  .how-step-pack {
    width: min(75vw, 220px);
  }

  .how-step-pod {
    width: min(62vw, 178px);
  }

  .how-step-cup {
    width: min(28vw, 92px);
  }

  .how-step-number {
    font-size: 2.05rem;
  }

  .how-step-title {
    font-size: 2.45rem;
  }

  .how-arrow {
    height: 42px;
  }

  .how-arrow-img {
    width: 60px;
  }

  .how-bg-decor-img {
    width: 74px;
  }

  .how-decor {
    scale: 0.7;
  }

  /* STORES CARDS FLIP */
  .store-flip-card {
    width: min(100%, 260px);
    height: 116px;
  }

  .store-face-front,
  .store-face-back {
    border-radius: 22px;
  }

  .store-actions {
    max-width: 100%;
  }

  .store-btn {
    min-height: 40px;
    font-size: 0.9rem;
    border-radius: 14px;
  }

  .store-face-front::after {
    font-size: 0.66rem;
    bottom: 8px;
  }

  .stores-section {
    padding: 6.5rem 0 6.5rem;
  }

  .stores-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    margin-bottom: 1.5rem;
  }

  .stores-wave-top {
    height: 74px;
  }

  .stores-wave-bottom {
    height: 70px;
  }

  /* FAQS NUEVO LAYOUT */
  .faq-section {
    padding: 4rem 0 4.2rem;
  }

  .faq-title {
    font-size: clamp(2.4rem, 12vw, 4rem);
    text-shadow: 0 3px 0 rgba(0, 138, 126, 0.12);
  }

  .faq-subtitle {
    font-size: 0.97rem;
  }

  .faq-pill {
    width: 100%;
    text-align: center;
    padding: 0.95rem 1rem;
    font-size: 0.93rem;
  }

  .faq-panel {
    border-radius: 1.35rem;
    padding: 1.15rem 1rem;
  }

  .faq-panel-title {
    font-size: 1.04rem;
  }

  .faq-panel-text {
    font-size: 0.95rem;
  }

  /* CTA SOCIAL */
  .cta-final-section {
    padding: 6rem 0 4.5rem;
  }

  .cta-final-top-shape {
    height: 90px;
  }

  .cta-final-title {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .cta-final-subtitle {
    font-size: 0.98rem;
  }

  .cta-final-logo {
    width: min(100%, 300px);
  }

  .cta-final-actions {
    gap: 0.7rem;
  }

  /* FOOTER */
  .site-footer {
    padding: 2.1rem 0 1rem;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-nav {
    gap: 0.75rem 1rem;
  }

  .footer-nav a,
  .footer-link {
    font-size: 0.92rem;
  }

  .footer-social {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.84rem;
  }
}



/* ========================================
   ABOUT REBUILD REAL
======================================== */

/* Tablet + mobile */
@media (max-width: 991.98px) {
  .about-section {
    padding: 3.8rem 0 0;
    overflow: hidden;
  }

  .about-pattern {
    inset: 0;
    opacity: 1;
    background-size: cover;
    background-position: center top;
  }

  .about-container {
    position: relative;
    z-index: 3;
  }

  .about-container .row {
    row-gap: 0.75rem !important;
  }

  .about-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .about-title {
    text-align: center;
    margin: 0 auto 0.7rem;
    max-width: 30rem;
  }

  .about-copy-card {
    max-width: 34rem;
    margin: 0 auto;
  }

  .about-text {
    max-width: 100%;
  }

  /* fuera frutas */
  .about-fruits {
    display: none !important;
  }

  /* pod debajo del texto */
  .about-pod {
    right: auto !important;
    bottom: auto !important;
    width: 135px;
    max-width: 100%;
    margin: 1rem auto 0;
    z-index: 5;
    top: -23%;
  }

  /* shaker abajo */
  .about-visual {
    position: relative;
    min-height: 80px !important;
    margin-top: 0.25rem;
    display: block;
  }

  .about-shaker {
    position: absolute !important;
    bottom: -8rem !important;
    /* right: -2.5rem !important; */
    right: -23% !important;
    width: min(100%, 273px);
    max-height: none;
    margin: 0;
    transform: rotate(322deg) !important;

  }
}

/* ========================================
   ABOUT MOBILE FIX FINAL
======================================== */
@media (max-width: 767.98px) {
  .about-pattern {
    inset: 0;
    opacity: 1;
    background-size: cover;
    background-position: center top;
  }

  .about-section {
    padding: 3.1rem 0 0 !important;
  }

  .about-container .row {
    row-gap: 0 !important;
    --bs-gutter-y: 0 !important;
  }

  .about-copy {
    text-align: center;
  }

  .about-title {
    max-width: 17rem;
    margin: 0 auto 0.6rem;
  }

  .about-copy-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0.95rem 0.95rem;
  }

  .about-text {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  /* 🔥 AQUÍ ESTÁ LA CLAVE */
  .about-pod {
    left: 1% !important;
    top: -15% !important;
    margin: 0.7rem auto 0 !important;
    width: 82px;
  }

  .about-visual {
    min-height: 30px !important;
    margin-top: -0.2rem;
  }

  .about-shaker {
    display: none !important;
  }
}

/* ========================================
   HOW – CÍRCULOS E IMÁGENES
======================================== */

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .how-step-circle {
    width: 185px !important;
    height: 185px !important;
  }

  .how-step-pack {
    width: 195px !important;
  }

  .how-step-pod {
    width: 145px !important;
  }

  .how-step-cup {
    width: 92px !important;
    bottom: 10px;
  }

  .how-step-cup-left {
    left: -10px;
  }

  .how-step-cup-center {
    transform: translateX(-50%) scale(1.12);
  }

  .how-step-cup-right {
    right: -10px;
  }

  .how-arrow-1 {
    position: relative;
    left: -18%;
    transform: rotate(290deg);
    scale: 1.15;
  }

  .how-arrow-2 {
    position: relative;
    right: -20%;
    transform: rotate(255deg);
    scale: 1.15;
  }

  .how-decor-green-left {
    position: absolute;
    left: 66%;
    top: 88%;
    transform: translateY(-50%) rotate(12deg);
    scale: 1.1;
  }

  .how-decor-pink-splash {
    position: absolute;
    left: 18%;
    top: 48%;
    transform: translateY(-50%) rotate(355deg);
    scale: 1.25;
  }

  .how-decor-coral-left {
    position: absolute;
    left: 67%;
    top: 33%;
    transform: translateY(-50%) rotate(304deg);
    scale: 1.05;
  }

  .how-decor-green-splash {
    position: absolute;
    left: 16%;
    top: 66%;
    transform: translateY(-50%) rotate(22deg);
    scale: 1.15;
  }

  .how-decor-pink-top {
    position: absolute;
    left: 12%;
    top: 46%;
    transform: translateY(-50%) rotate(355deg);
    scale: 1.2;
  }
}


/* Mobile pequeño */
@media (max-width: 767.98px) {
  .how-step-circle {
    width: 130px !important;
    height: 130px !important;
  }

  .how-step-pack {
    width: 136px !important;
  }

  .how-step-pod {
    width: 100px !important;
  }

  .how-step-cup {
    width: 72px !important;
    bottom: 7px;
  }

  .how-step-cup-left {
    left: -5px;
  }

  .how-step-cup-center {
    transform: translateX(-50%) scale(1.05);
  }

  .how-step-cup-right {
    right: -5px;
  }

  .how-arrow-1 {
    position: relative;
    left: -26%;
    transform: rotate(295deg);
    scale: 1.3;
  }

  .how-arrow-2 {
    position: relative;
    right: -33%;
    transform: rotate(258deg);
    scale: 1.3;
  }

  .how-decor-green-left {
    position: absolute;
    left: 68%;
    top: 66%;
    transform: translateY(-50%) rotate(15deg);
    scale: 1;
  }

  .how-decor-pink-splash {
    position: absolute;
    left: 16%;
    top: 34%;
    transform: translateY(-50%) rotate(355deg);
    scale: 1.5;
  }

  .how-decor-coral-left {
    position: absolute;
    left: 68%;
    top: 34%;
    transform: translateY(-50%) rotate(304deg);
    scale: 1.2;
  }

  .how-decor-green-splash {
    position: absolute;
    left: 13%;
    top: 68%;
    transform: translateY(-50%) rotate(25deg);
    scale: 1.3;
  }

  .how-decor-pink-top {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(355deg);
    scale: 1.4;
  }
}

/* ========================================
   STORES / SPOTS RESPONSIVE CONTROLADO
======================================== */

/* Tablet + mobile */
@media (max-width: 991.98px) {
  .stores-section {
    position: relative;
    min-height: 520px !important;
    padding: 3.4rem 0 3.4rem !important;
    overflow: hidden;
  }

  .stores-content {
    position: relative;
    z-index: 4;
    margin-top: 0 !important;
  }

  .stores-fruit-visual {
    display: block !important;
    position: absolute !important;
    left: -10%;
    bottom: -2%;
    width: min(48vw, 300px);
    z-index: 2;
    pointer-events: none;
    transform: none !important;
  }

  .stores-fruit-visual img,
  .stores-fruit-img {
    width: 100%;
    height: auto;
    animation: none;
  }

  .stores-title {
    margin-bottom: 1rem;
    text-align: center;
  }

  .stores-cards-wrap {
    gap: 0.85rem;
    margin-top: 0.75rem;
  }

  .store-flip-card {
    width: 240px;
    height: 110px;
  }

  .store-face {
    border-radius: 20px;
  }

  .store-face-front,
  .store-face-back {
    padding: 0.75rem;
  }

  .stores-logo {
    max-width: 150px;
  }

  .store-actions {
    max-width: 100%;
    gap: 0.5rem;
  }

  .store-btn {
    min-height: 38px;
    font-size: 0.85rem;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
  }

  .store-face-front::after {
    font-size: 0.62rem;
    bottom: 6px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .stores-section {
    min-height: 560px !important;
    padding: 3.8rem 0 3.6rem !important;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .stores-fruit-visual {
    left: -14%;
    bottom: 0%;
    width: min(40vw, 320px);
  }

  .stores-title {
    font-size: clamp(3rem, 7vw, 4.8rem);
  }

  .store-flip-card {
    width: 260px;
    height: 118px;
  }

  .stores-logo {
    max-width: 165px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .stores-section {
    min-height: 430px !important;
    padding: 2.8rem 0 2.8rem !important;
  }

  .stores-fruit-visual {
    left: -18%;
    bottom: -2%;
    width: min(52vw, 210px);
  }

  .stores-title {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
    margin-bottom: 0.85rem;
  }

  .stores-cards-wrap {
    gap: 0.75rem;
  }

  .store-flip-card {
    width: 210px;
    height: 104px;
  }

  .stores-logo {
    max-width: 135px;
  }

  .store-btn {
    min-height: 36px;
    font-size: 0.78rem;
    padding: 0.62rem 0.7rem;
  }
}

/* Mobile pequeño */
@media (max-width: 575.98px) {
  .stores-section {
    min-height: 390px !important;
    padding: 2.5rem 0 2.5rem !important;
  }

  .stores-fruit-visual {
    left: -20%;
    bottom: 0;
    width: min(50vw, 180px);
  }

  .stores-title {
    font-size: clamp(2.3rem, 10.5vw, 3.3rem);
  }

  .store-flip-card {
    width: 190px;
    height: 98px;
  }

  .stores-logo {
    max-width: 120px;
  }

  .store-btn {
    font-size: 0.74rem;
  }
}


/* Mobile */
@media (max-width: 767.98px) {
  .stores-section {
    min-height: 430px !important;
    padding: 2.8rem 0 2.8rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .stores-content {
    position: relative;
    z-index: 4;
    margin-top: 0 !important;
  }

  .stores-fruit-visual {
    display: block !important;
    position: absolute !important;
    left: -22%;
    bottom: 1%;
    width: min(55vw, 210px);
    z-index: 2;
    pointer-events: none;
    transform: none !important;
  }

  .stores-fruit-visual img,
  .stores-fruit-img {
    width: 100%;
    height: auto;
  }

  .stores-title {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
    margin-bottom: 0.85rem;
    text-align: center;
  }

  .stores-cards-wrap {
    gap: 0.75rem;
    margin-top: 0.6rem;
  }

  .store-flip-card {
    width: 210px;
    height: 104px;
  }

  .store-face {
    border-radius: 18px;
  }

  .store-face-front,
  .store-face-back {
    padding: 0.7rem;
  }

  .stores-logo {
    max-width: 135px;
  }

  .store-actions {
    max-width: 100%;
    gap: 0.45rem;
  }

  .store-btn {
    min-height: 36px;
    font-size: 0.78rem;
    padding: 0.62rem 0.7rem;
    border-radius: 12px;
  }

  .store-face-front::after {
    font-size: 0.6rem;
    bottom: 6px;
  }

  .stores-wave-top {
    height: 70px;
  }

  .stores-wave-bottom {
    height: 64px;
  }
}

/* Mobile pequeño */
@media (max-width: 575.98px) {
  .stores-bg-pattern {
    transform: scaleY(-1.5) scaleX(-1.5);
  }

  .stores-section {
    min-height: 340px !important;
    padding: 2.5rem 0 2.5rem !important;
  }

  .stores-fruit-visual {
    left: -25%;
    bottom: -5%;
    width: min(55vw, 200px);
  }

  .stores-title {
    font-size: clamp(2.3rem, 10.5vw, 3.3rem);
  }

  .store-flip-card {
    width: 190px;
    height: 98px;
  }

  .stores-logo {
    max-width: 120px;
  }

  .store-btn {
    font-size: 0.74rem;
  }
}

/* ========================================
   FAQ MOBILE FIX FINAL
======================================== */
@media (max-width: 767.98px) {
  .faq-section {
    padding: 3.1rem 0 3.2rem !important;
  }

  .faq-container {
    position: relative;
    z-index: 3;
  }

  .faq-hero {
    margin-bottom: 1.25rem !important;
  }

  .faq-copy {
    text-align: center;
    margin-inline: auto;
  }

  .faq-title {
    max-width: 18rem;
    margin: 0 auto 0.65rem;
    font-size: clamp(2.5rem, 11vw, 3.8rem);
    line-height: 0.92;
    text-align: center;
  }

  .faq-subtitle {
    max-width: 18rem;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
  }

  .faq-visual {
    max-width: 260px;
    margin: 0.5rem auto 0;
    transform: none !important;
  }

  .faq-visual-card {
    padding: 0.25rem;
  }

  .faq-visual-img {
    max-width: 240px;
    animation: none;
  }

  .faq-fruits {
    display: none !important;
  }

  .faq-pills-shell {
    margin-bottom: 1rem;
  }

  .faq-pills {
    gap: 0.55rem;
    padding-bottom: 0.3rem;
    margin-bottom: 0.9rem;
    padding-inline: 0.1rem;
  }

  .faq-pill {
    width: auto;
    min-width: max-content;
    text-align: center;
    padding: 0.8rem 0.95rem;
    font-size: 0.85rem;
    line-height: 1.05;
    white-space: nowrap;
  }

  .faq-panel-wrap {
    min-height: auto;
  }

  .faq-panel {
    border-radius: 1.2rem;
    padding: 1rem 0.95rem;
    box-shadow: 0 7px 0 rgba(255, 122, 0, 0.08);
  }

  .faq-panel-title {
    margin-bottom: 0.55rem;
    font-size: 1.15rem;
    line-height: 1.15;
    text-align: left;
  }

  .faq-panel-text {
    font-size: 0.93rem;
    line-height: 1.5;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding: 2.8rem 0 2.9rem !important;
  }

  .faq-title {
    max-width: 16rem;
    font-size: clamp(2.3rem, 10.5vw, 3.4rem);
  }

  .faq-subtitle {
    max-width: 16rem;
    font-size: 0.9rem;
  }

  .faq-visual {
    max-width: 220px;
  }

  .faq-visual-img {
    max-width: 205px;
  }

  .faq-pill {
    padding: 0.72rem 0.88rem;
    font-size: 0.8rem;
  }

  .faq-panel {
    border-radius: 1.05rem;
    padding: 0.9rem 0.85rem;
  }

  .faq-panel-title {
    font-size: 1.02rem;
  }

  .faq-panel-text {
    font-size: 0.89rem;
  }
}

/* ========================================
   PAGE LOADER
======================================== */

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #9de857 0%, #22deb6 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../assets/patterns/pattern-wave.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.page-loader-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}

.page-loader-logo {
  width: min(260px, 52vw);
  height: auto;
  object-fit: contain;
  animation: loaderLogoFloat 2.2s ease-in-out infinite;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.14));
}

.page-loader-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-loader-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.35;
  animation: loaderDotPulse 1.2s ease-in-out infinite;
}

.page-loader-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.page-loader-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loaderLogoFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes loaderDotPulse {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (max-width: 575.98px) {
  .page-loader-logo {
    width: min(210px, 60vw);
  }

  .page-loader-dots span {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 767.98px) {
  .how-video-wrap {
    max-width: 290px;
    margin-bottom: 2.2rem;
    border-radius: 1.5rem;
    box-shadow: 0 9px 0 rgba(111, 0, 145, 0.26);
  }

  .how-video-desktop {
    display: none;
  }

  .how-video-mobile {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .benefits-marquee {
    margin-top: 0.85rem;
  }

  .benefit-pill {
    min-height: 40px;
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem;
  }

  .benefits-track {
    animation-duration: 30s;
  }
}

/* ========================================
   HERO POSTER STYLE / SOLO HERO
======================================== */

.hero-section {
  min-height: min(100vh, 860px);
  padding: 7rem 0 6.5rem;
  overflow: hidden;
}

.hero-section .hero-copy {
  text-align: center;
}

.hero-section .hero-title {
  display: block;
  max-width: 11ch;
  margin-inline: auto;
  text-align: center;
  line-height: 0.88;
}

.hero-section .hero-subtitle {
  max-width: 34rem;
  margin-inline: auto;
}

.hero-section .hero-actions {
  display: flex;
  justify-content: center;
}

.hero-section .hero-visual {
  height: clamp(560px, 55vw, 700px);
  min-height: 560px;
  max-height: 700px;
}

.hero-section .hero-product-wrap {
  position: relative;
  width: min(100%, 760px);
  height: 100%;
  min-height: 0;
  margin-inline: auto;
}

.hero-section .hero-swirl-main,
.hero-section .hero-pack-main {
  position: absolute;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.18));
}

.hero-section .hero-swirl-main {
  width: 62% !important;
  top: -7% !important;
  left: 53% !important;
  animation: floatSwirl 4s ease-in-out infinite;
}

.hero-section .hero-pack-main {
  width: 71% !important;
  left: 19% !important;
  bottom: 0% !important;
  animation: floatPack 5.5s ease-in-out infinite 0.3s;
}

@keyframes floatSwirl {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

@keyframes floatPack {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}

.hero-section .hero-product-fruits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: none;
  pointer-events: none;
  z-index: 7;
}

.hero-section .hero-fruit-1.hero {
  left: 15%;
  bottom: 21%;
  width: 132px;
  animation: floatFruitA 4.8s ease-in-out infinite 0.2s;
}

.hero-section .hero-fruit-2.hero {
  left: 7%;
  top: 37%;
  width: 152px;
  animation: floatFruitD 5.6s ease-in-out infinite 0.8s;
}

.hero-section .hero-fruit-3.hero {
  right: 17%;
  top: 38%;
  width: 84px;
  animation: floatFruitC 4.2s ease-in-out infinite 1.1s;
}

.hero-section .hero-fruit-4.hero {
  right: 18%;
  top: -2%;
  width: 84px;
  animation: floatFruitB 5.1s ease-in-out infinite 0.4s;
}

.hero-section .hero-fruit-5.hero {
  right: -20%;
  top: -5%;
  width: 97px;
  animation: floatFruitD 6s ease-in-out infinite 1.3s;
}

.hero-section .hero-fruit-6.hero {
  right: 25%;
  top: 30%;
  width: 104px;
  animation: floatFruitC 4.6s ease-in-out infinite 0.7s;
}

.hero-section .hero-fruit-7.hero {
  left: 45%;
  top: 1%;
  width: 124px;
  animation: floatFruitA 5.8s ease-in-out infinite 1.6s;
}

.hero-section .hero-fruit-8.hero {
  right: 9%;
  top: 25%;
  width: 86px;
  animation: floatFruitB 4.9s ease-in-out infinite 0.9s;
}

@media (min-width: 992px) {
  .hero-section .hero-copy {
    max-width: 42rem;
    padding-top: 5rem;
  }

  .hero-section .hero-title {
    font-size: clamp(5.4rem, 8.6vw, 8.8rem);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .hero-section .hero-container {
    min-height: auto;
  }

  .hero-section .hero-container .row {
    row-gap: 0.75rem !important;
  }

  .hero-section .hero-copy {
    max-width: 36rem;
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  .hero-section .hero-title {
    max-width: 10ch;
    font-size: clamp(4.4rem, 9vw, 5.7rem);
    text-shadow: 0 4px 0 rgba(0, 138, 126, 0.2);
  }

  .hero-section .hero-subtitle {
    max-width: 30rem;
    font-size: 1.18rem;
  }

  .hero-section .hero-actions {
    margin-top: 1rem;
  }

  .hero-section .hero-visual {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    margin-top: 0;
  }


  .hero-section .hero-swirl-main {
    width: 350px;
    top: 4%;
    left: 50%;
  }

  .hero-section .hero-pack-main {
    width: 340px;
    left: 50%;
    bottom: 2%;
  }

  .hero-section .hero-product-fruits {
    inset: 0;
  }

  .hero-section .hero-fruit-1.hero {
    left: 15%;
    bottom: 18%;
    width: 78px;
  }

  .hero-section .hero-fruit-2.hero {
    left: 6%;
    top: 38%;
    width: 90px;
  }

  .hero-section .hero-fruit-3.hero {
    right: 17%;
    top: 37%;
    width: 54px;
  }

  .hero-section .hero-fruit-4.hero {
    left: 33%;
    bottom: 7%;
    width: 70px;
  }

  .hero-section .hero-fruit-5.hero {
    right: 6%;
    top: 41%;
    width: 76px;
  }

  .hero-section .hero-fruit-6.hero {
    right: 24%;
    top: 32%;
    width: 68px;
  }

  .hero-section .hero-fruit-7.hero {
    left: 46%;
    top: 1%;
    width: 78px;
  }

  .hero-section .hero-fruit-8.hero {
    right: 9%;
    top: 28%;
    width: 48px;
  }

  .hero-section .hero-wave-bottom {
    height: 52px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 6.25rem 0 2.1rem;
  }

  .hero-section .hero-container {
    min-height: auto;
    display: block;
  }

  .hero-section .hero-container .row {
    row-gap: 0.15rem !important;
  }

  .hero-section .hero-copy {
    max-width: 21rem;
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  .hero-section .hero-kicker {
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
  }

  .hero-section .hero-title {
    max-width: 9.5ch;
    font-size: clamp(3.25rem, 14vw, 4.5rem);
    line-height: 0.88;
    text-align: center;
  }

  .hero-section .hero-subtitle {
    max-width: 18.5rem;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .hero-section .hero-actions {
    margin-top: 0.9rem;
  }

  .hero-section .btn-pill {
    min-height: 48px;
    padding: 0.8rem 1.15rem;
    font-size: 0.95rem;
  }

  .hero-section .hero-visual {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
    margin-top: -0.1rem;
  }

  .hero-section .hero-swirl-main {
    width: 286px;
    top: 11%;
    left: 50%;
  }

  .hero-section .hero-pack-main {
    width: 258px;
    left: 50%;
    bottom: 4%;
  }

  .hero-section .hero-fruit-1.hero {
    left: 17%;
    bottom: 20%;
    width: 62px;
  }

  .hero-section .hero-fruit-2.hero {
    left: 2%;
    top: 39%;
    width: 72px;
  }

  .hero-section .hero-fruit-3.hero {
    right: 15%;
    top: 40%;
    width: 42px;
  }

  .hero-section .hero-fruit-4.hero {
    left: 35%;
    bottom: 8%;
    width: 56px;
  }

  .hero-section .hero-fruit-5.hero {
    right: 0;
    top: 43%;
    width: 70px;
  }

  .hero-section .hero-fruit-6.hero {
    right: 24%;
    top: 35%;
    width: 54px;
  }

  .hero-section .hero-fruit-7.hero {
    left: 45%;
    top: 6%;
    width: 64px;
  }

  .hero-section .hero-fruit-8.hero {
    right: 4%;
    top: 31%;
    width: 42px;
  }

  .hero-section .hero-wave-bottom {
    height: 36px;
  }

  .hero-section .hero-scroll-cue {
    bottom: 3%;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 5.9rem 0 1.75rem;
  }

  .hero-section .hero-copy {
    max-width: 18rem;
  }

  .hero-section .hero-title {
    max-width: 9ch;
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .hero-section .hero-subtitle {
    max-width: 16rem;
    font-size: 0.92rem;
  }

  .hero-section .hero-visual {
    height: 325px;
    min-height: 325px;
    max-height: 325px;
  }


  .hero-section .hero-swirl-main {
    width: 258px;
    top: 12%;
  }

  .hero-section .hero-pack-main {
    width: 236px;
    bottom: 5%;
  }

  .hero-section .hero-fruit-1.hero {
    left: 15%;
    width: 56px;
  }

  .hero-section .hero-fruit-2.hero {
    left: 1%;
    width: 64px;
  }

  .hero-section .hero-fruit-5.hero {
    right: -2%;
    width: 62px;
  }
}

@media (max-width: 575.98px) and (max-height: 760px) {
  .hero-section {
    padding-top: 5.4rem;
    padding-bottom: 1.45rem;
  }

  .hero-section .hero-title {
    font-size: clamp(2.65rem, 12vw, 3.6rem);
  }

  .hero-section .hero-subtitle {
    max-width: 15.5rem;
    font-size: 0.88rem;
  }

  .hero-section .hero-actions {
    margin-top: 0.75rem;
  }

  .hero-section .hero-visual {
    height: 295px;
    min-height: 295px;
    max-height: 295px;
  }


  .hero-section .hero-swirl-main {
    width: 232px;
    top: 12%;
  }

  .hero-section .hero-pack-main {
    width: 214px;
    bottom: 4%;
  }
}

/* ========================================
   HERO HEIGHT FIX / TABLET + MOBILE FINAL
   Pegar al FINAL del styles.css
======================================== */

/* TABLET */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title br {
    display: none;
  }

  .hero-pattern {
    background-size: 1000px auto;
  }

  .btn-pill {
    font-size: 1rem;
  }

  .hero-section {
    min-height: auto !important;
    padding: 6.2rem 0 2.4rem !important;
  }

  .hero-section .hero-container .row {
    row-gap: 0.35rem !important;
  }

  .hero-section .hero-copy {
    max-width: 34rem !important;
    padding-top: 0 !important;
  }

  .hero-section .hero-kicker {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
  }

  .hero-section .hero-title {
    max-width: none !important;
    width: 100% !important;

    font-size: clamp(2.9rem, 6.2vw, 4rem) !important;
    line-height: 0.88 !important;
    margin: 0 !important;

    white-space: nowrap !important;
  }

  .hero-section .hero-subtitle {
    max-width: 27rem !important;
    margin-top: 0.75rem !important;
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
  }

  .hero-section .hero-actions {
    margin-top: 0.85rem !important;
  }

  .hero-section .hero-visual {
    height: 340px !important;
    min-height: 340px !important;
    max-height: 340px !important;
    margin-top: -0.25rem !important;
  }

  .hero-section .hero-swirl-main {
    width: 30% !important;
    top: -16% !important;
    left: 53% !important;
  }

  .hero-section .hero-pack-main {
    width: 40% !important;
    left: 27% !important;
    bottom: 0% !important;
  }

  .hero-scroll-cue {
    bottom: 3% !important;
  }

  .hero-section .hero-fruit-4.hero {
    width: 57px !important;
    right: 17% !important;
    left: auto !important;
    top: -5% !important;
    bottom: auto !important;
  }

  .hero-section .hero-fruit-5.hero {
    width: 47px !important;
    right: 10% !important;
    top: 5% !important;
    bottom: auto !important;
  }

  .hero-section .hero-wave-bottom {
    height: 42px !important;
  }
}

/* MOBILE GENERAL */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto !important;
    padding: 5.5rem 0 1.6rem !important;
  }

  .hero-section .hero-container,
  .hero-section .hero-container .row {
    min-height: auto !important;
  }

  .hero-section .hero-container .row {
    row-gap: 0 !important;
    margin-top: auto;
  }

  .hero-section .hero-copy {
    max-width: 19rem !important;
    padding-top: 0 !important;
  }

  .hero-section .hero-kicker {
    font-size: 0.85rem !important;
    margin-bottom: 0.12rem !important;
  }

  .hero-section .hero-title {
    max-width: 9ch !important;
    font-size: clamp(2.85rem, 12.6vw, 3.85rem) !important;
    line-height: 0.86 !important;
  }

  .hero-section .hero-subtitle {
    max-width: 16.5rem !important;
    margin-top: 0.65rem !important;
    font-size: 0.88rem !important;
    line-height: 1.32 !important;
  }

  .hero-section .hero-actions {
    margin-top: 0.75rem !important;
  }

  .hero-section .btn-pill {
    min-height: 44px !important;
    padding: 0.72rem 1rem !important;
    font-size: 0.88rem !important;
  }

  .hero-section .hero-visual {
    height: 285px !important;
    min-height: 285px !important;
    max-height: 285px !important;
    margin-top: -0.2rem !important;
  }

  .hero-section .hero-product-wrap {
    max-width: 300px !important;
    height: 285px !important;
    min-height: 285px !important;
    max-height: 285px !important;
  }

  .hero-section .hero-swirl-main {
    width: 220px !important;
    top: 10% !important;
    left: 50% !important;
  }

  .hero-section .hero-pack-main {
    width: 205px !important;
    left: 50% !important;
    bottom: 4% !important;
  }

  .hero-section .hero-fruit-4.hero {
    width: 46px !important;
    right: 28% !important;
    left: auto !important;
    top: 8% !important;
    bottom: auto !important;
  }

  .hero-section .hero-fruit-5.hero {
    width: 56px !important;
    right: 8% !important;
    top: 38% !important;
    bottom: auto !important;
  }

  .hero-section .hero-wave-bottom {
    height: 28px !important;
  }
}

/* MOBILE PEQUEÑO */
@media (max-width: 575.98px) {
  .hero-section {
    padding: 5.1rem 0 1.35rem !important;
  }

  .hero-section .hero-copy {
    max-width: 17.2rem !important;
  }

  .hero-section .hero-title {
    font-size: clamp(2.55rem, 12vw, 3.45rem) !important;
  }

  .hero-section .hero-subtitle {
    max-width: 15.2rem !important;
    font-size: 0.84rem !important;
  }

  .hero-section .hero-visual {
    height: 255px !important;
    min-height: 255px !important;
    max-height: 255px !important;
  }

  .hero-section .hero-product-wrap {
    max-width: 275px !important;
    height: 255px !important;
    min-height: 255px !important;
    max-height: 255px !important;
  }

  .hero-section .hero-swirl-main {
    width: 205px !important;
    top: 10% !important;
  }

  .hero-section .hero-pack-main {
    width: 192px !important;
    bottom: 3% !important;
  }

  .hero-section .hero-fruit-4.hero {
    width: 42px !important;
  }

  .hero-section .hero-fruit-5.hero {
    width: 50px !important;
    right: 6% !important;
  }
}

/* CELULARES BAJITOS */
@media (max-width: 575.98px) and (max-height: 760px) {
  .hero-section {
    padding-top: 4.85rem !important;
    padding-bottom: 1.1rem !important;
  }

  .hero-pattern {
    background-size: 950px auto;
  }

  .hero-title br {
    display: none !important;
  }

  .hero-section .hero-title {
    width: max-content !important;
    max-width: none !important;

    font-size: clamp(1.5rem, 5vw, 3.15rem) !important;
    line-height: 0.88 !important;

    margin-inline: auto !important;

    white-space: nowrap !important;
  }

  .hero-section .hero-subtitle {
    max-width: none !important;
    font-size: 0.8rem !important;
  }

  .hero-section .hero-actions {
    margin-top: 0.62rem !important;
  }

  .hero-section .hero-visual {
    height: 150px !important;
    min-height: 0% !important;
    max-height: 100% !important;
  }

  .hero-section .hero-product-wrap {
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0% !important;
    max-height: 100% !important;
  }

  .hero-section .hero-swirl-main {
    width: 178px !important;
    display: none !important;
  }

  .hero-section .hero-pack-main {
    width: 173px !important;
    left: 24% !important;
    bottom: 22% !important;
  }

  .hero-section .hero-fruit-4.hero {
    width: 36px !important;
    display: none !important;
  }

  .hero-section .hero-fruit-5.hero {
    width: 44px !important;
    display: none !important;
  }
}