/* =====================================================
   FRUTABUELA — Design System
   Paleta: Amarillo, Azul y Rojo — Bandera Colombiana
   Fuentes: Outfit (headings) + Inter (body)
   ===================================================== */

:root {
  /* ── Paleta Frutabuela: Bandera Colombiana ── */
  --clr-primary:      #D42B1E;   /* rojo colombiano */
  --clr-primary-dk:   #A51F14;
  --clr-blue:         #1055A5;   /* azul colombiano */
  --clr-blue-dk:      #0A3D7A;
  --clr-blue-deep:    #0B1D3A;   /* azul profundo para fondos */
  --clr-yellow:       #F9C22E;   /* amarillo colombiano */
  --clr-yellow-dk:    #D4A017;   /* amarillo oscuro */
  --clr-orange:       #F5901E;   /* naranja tropical */
  --clr-pink:         #E85478;

  --clr-bg:           #FFFEF5;   /* blanco cálido / crema */
  --clr-bg-alt:       #FFF8DC;   /* crema amarillenta — luz tropical */
  --clr-bg-card:      #FFFFFF;
  --clr-footer:       #0B1428;   /* azul noche — Colombia nocturna */

  --clr-text:         #1A1A0A;
  --clr-text-light:   #5A5A3A;
  --clr-text-white:   #FFFFFF;

  /* Typography */
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(26,26,10,.07);
  --shadow-md:   0 8px 24px rgba(26,26,10,.11);
  --shadow-lg:   0 20px 40px rgba(26,26,10,.15);
  --shadow-card: 0 4px 20px rgba(212,43,30,.12);

  /* Container */
  --container: 1180px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* Z-index scale */
  --z-base:    10;
  --z-nav:     50;
  --z-drawer:  60;
  --z-overlay: 55;
  --z-fab:     40;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--clr-text);
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.text-center { text-align: center; }
.mt-2xl     { margin-top: var(--sp-2xl); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-text-white);
  box-shadow: 0 4px 14px rgba(232,68,31,.30);
}
.btn-primary:hover {
  background: var(--clr-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,68,31,.38);
}

.btn-outline {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-text-white);
}

.btn-outline-primary {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
  padding: 0.72rem 2rem;
}
.btn-outline-primary:hover {
  background: var(--clr-primary);
  color: var(--clr-text-white);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.30);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--t-base);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-wa-large:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
}

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  border: 2px solid rgba(11,29,58,.35);
  color: var(--clr-blue-deep);
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base);
}
.btn-outline-w:hover {
  border-color: var(--clr-blue-deep);
  background: rgba(11,29,58,.08);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   FRANJA BANDERA COLOMBIA
   ============================================================ */
.co-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 5px;
  display: flex;
  z-index: 100;
}
.co-y { flex: 2; background: #F9C22E; }
.co-b { flex: 1; background: #1055A5; }
.co-r { flex: 1; background: #D42B1E; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 5px; left: 0;
  width: 100%;
  background: rgba(255, 254, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,85,165,.10);
  z-index: var(--z-nav);
  padding: 0.9rem 0;
  transition: box-shadow var(--t-base);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(30,10,4,.09); }

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.5px;
}
.logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--clr-text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Logo imagen en navbar */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo imagen en footer — sobre fondo oscuro usa una píldora clara */
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.1rem;
  background: #fff;
  border-radius: var(--r-sm);
  padding: 6px 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  font-weight: 500;
  color: var(--clr-text);
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 2px;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-blue);
  border-radius: 2px;
  transition: width var(--t-base);
}
.nav-item:hover::after { width: 100%; }

.nav-wa { font-size: 0.88rem; padding: 0.52rem 1.1rem; }

.mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-blue);
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mobile-btn:hover { background: rgba(16,85,165,.08); }

/* Language switcher — Premium flag style */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem 0.3rem 0.3rem;
  border: 1.5px solid rgba(16,85,165,.18);
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--clr-text);
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all var(--t-base);
  flex-shrink: 0;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.lang-switch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,85,165,.06), rgba(249,194,46,.06));
  opacity: 0;
  transition: opacity var(--t-base);
}
.lang-switch:hover {
  border-color: var(--clr-blue);
  box-shadow: 0 4px 16px rgba(16,85,165,.15);
  transform: translateY(-1px);
}
.lang-switch:hover::before { opacity: 1; }

.lang-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  position: relative;
  z-index: 1;
}
.lang-flag svg {
  width: 22px;
  height: 22px;
  display: block;
}
.lang-label {
  position: relative;
  z-index: 1;
}

.drawer-lang {
  margin-top: 1rem;
  justify-content: center;
  padding: 0.45rem 1.2rem 0.45rem 0.45rem;
  font-size: 0.82rem;
}
.drawer-lang .lang-flag {
  width: 26px;
  height: 26px;
}
.drawer-lang .lang-flag svg {
  width: 26px;
  height: 26px;
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,10,4,.45);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 85vw);
  height: 100%;
  background: var(--clr-bg-card);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: -8px 0 40px rgba(30,10,4,.15);
}
.drawer.open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.drawer-close:hover { color: var(--clr-blue); background: rgba(16,85,165,.06); }

.drawer-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--clr-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(30,10,4,.06);
  transition: color var(--t-fast);
}
.drawer-link:hover { color: var(--clr-blue); }

.drawer-wa { margin-top: 1.5rem; justify-content: center; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-hd { margin-bottom: 3rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: 0.6rem;
}
.eyebrow-light { color: var(--clr-yellow); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   HERO — Carousel de Banners con la Abuela
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0D0705;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Overlay: atmosférico — viñeta suave, transparente en el centro */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(13,31,16,.45) 0%, transparent 65%),
    linear-gradient(to bottom,
      rgba(5,3,1,.78) 0%,
      rgba(5,3,1,.32) 38%,
      rgba(5,3,1,.32) 62%,
      rgba(5,3,1,.80) 100%
    );
  z-index: 1;
}

/* ---- Contenido centrado ---- */
.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 95px var(--sp-lg) 120px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

/* Badge eyebrow pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(249,194,46,.30);
  background: rgba(249,194,46,.07);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 1.5rem;
}
.hbp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-yellow);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.72); }
}
@media (prefers-reduced-motion: reduce) { .hbp-dot { animation: none; } }

/* Logo en hero — centrado */
.hero-logo-wrap {
  margin: 0 0 1.25rem;
  line-height: 1;
}
.hero-logo-img {
  width: clamp(240px, 36vw, 500px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,.45));
}

/* Acento bandera colombiana */
.hero-flag-accent {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.5rem;
}
.hero-flag-accent span {
  height: 3px;
  border-radius: 2px;
  display: block;
}
.hero-flag-accent span:nth-child(1) { background: var(--clr-yellow); width: 34px; }
.hero-flag-accent span:nth-child(2) { background: var(--clr-blue);   width: 18px; }
.hero-flag-accent span:nth-child(3) { background: var(--clr-primary); width: 18px; }

/* Descripción */
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 480px;
  font-weight: 400;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ---- Barra de stats inferior ---- */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem min(6vw, 80px);
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0 1.75rem;
}
.hstat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.hstat-num {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-yellow);
  line-height: 1;
}
.hstat-lbl {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  white-space: nowrap;
}

/* Botón scroll (dentro de stats bar) */
.hero-scroll-btn {
  position: absolute;
  right: min(4vw, 48px);
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.60);
  transition: all var(--t-base);
  animation: bounce-btn 2.2s ease-in-out infinite;
}
.hero-scroll-btn:hover {
  border-color: var(--clr-yellow);
  color: var(--clr-yellow);
  animation: none;
}
@keyframes bounce-btn {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll-btn { animation: none; } }

/* Botón glass */
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn-glass:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.85);
}


/* ============================================================
   BENEFITS — Tiles inmersivos (conecta con hero)
   ============================================================ */
.benefits {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: var(--clr-blue-deep);
}

.benefits-title { color: #fff; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Card: foto de fondo + overlay + contenido ── */
.benefit-card {
  position: relative;
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: default;
}

.bcard-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.benefit-card:hover .bcard-bg { transform: scale(1.07); }

.bcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 29, 58, 0.93) 0%,
    rgba(11, 29, 58, 0.55) 45%,
    rgba(11, 29, 58, 0.15) 100%
  );
  transition: background var(--t-slow);
}
.benefit-card:hover .bcard-overlay {
  background: linear-gradient(
    to top,
    rgba(11, 29, 58, 0.96) 0%,
    rgba(11, 29, 58, 0.65) 50%,
    rgba(11, 29, 58, 0.25) 100%
  );
}

/* ── Texto sobre la foto ── */
.bcard-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
}

.bcard-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-yellow);
  margin-bottom: 0.55rem;
}

.bcard-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.bcard-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

/* ── Pills de atributos (vidrio oscuro) ── */
.bcard-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.bcard-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  letter-spacing: 0.2px;
}

/* ============================================================
   PRODUCTS — ecommerce layout
   ============================================================ */
.products {
  padding: var(--sp-xl) 0;
  background: var(--clr-bg);
  position: relative;
}

/* ── Free shipping banner — estilo cupón ── */
.shipping-banner {
  display: flex;
  align-items: stretch;
  background: var(--clr-bg-alt);
  border: 1.5px solid rgba(16,85,165,.22);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 18px rgba(16,85,165,.10);
}

.sbanner-left {
  background: linear-gradient(160deg, var(--clr-blue-dk), var(--clr-blue));
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-shrink: 0;
  color: #fff;
  min-width: 80px;
}
.sbanner-gratis {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  color: var(--clr-yellow);
  text-transform: uppercase;
}

.sbanner-divider {
  width: 0;
  border-left: 2px dashed rgba(16,85,165,.28);
  margin: 0.6rem 0;
  flex-shrink: 0;
}

.sbanner-right {
  flex: 1;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.sbanner-right strong { color: var(--clr-blue-dk); font-weight: 700; }
.sbanner-price {
  color: var(--clr-primary) !important;
  font-weight: 800 !important;
  font-size: 1rem;
}
.sbanner-city {
  color: var(--clr-text-light);
  font-size: 0.82rem;
}
.sbanner-badge {
  background: var(--clr-yellow);
  color: #5A3800;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

/* ── Category filter bar ── */
.shop-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.sfbtn {
  padding: 0.46rem 1.3rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(16,85,165,.22);
  background: transparent;
  color: var(--clr-text-light);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--t-base);
}
.sfbtn:hover { border-color: var(--clr-blue); color: var(--clr-blue); }
.sfbtn.active {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
  color: #fff;
}

/* ── Product grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--clr-bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30,10,4,.06);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  cursor: default;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(16,85,165,.14);
}

/* ── Product image ── */
.product-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.bg-mango    { background: linear-gradient(135deg, #FFF3CD, #FFE082); }
.bg-mora     { background: linear-gradient(135deg, #FCE4EC, #F8BBD9); }
.bg-maracuya { background: linear-gradient(135deg, #FFF8E1, #FFCC80); }
.bg-lulo     { background: linear-gradient(135deg, #F1F8E9, #CCFF90); }
.bg-fresa    { background: linear-gradient(135deg, #FFEBEE, #FFCDD2); }
.bg-guayaba  { background: linear-gradient(135deg, #FFF3E0, #FFCCBC); }
.bg-pina     { background: linear-gradient(135deg, #FFFDE7, #FFF9C4); }
.bg-guanabana { background: linear-gradient(135deg, #F5F5F5, #E0E0E0); }
.bg-tomate-arbol { background: linear-gradient(135deg, #FFF3E0, #FFCCBC); }

.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--clr-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.26rem 0.72rem;
  border-radius: var(--r-full);
  letter-spacing: 0.3px;
}

.stock-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(16,85,165,.9);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-full);
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}

/* ── Product body ── */
.product-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.flavor-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-mango    { background: var(--clr-yellow); }
.dot-mora     { background: var(--clr-pink); }
.dot-maracuya { background: var(--clr-orange); }
.dot-lulo     { background: #7CB342; }
.dot-fresa    { background: #E91E63; }
.dot-guayaba  { background: #FF7043; }
.dot-pina     { background: #FFD54F; }
.dot-guanabana { background: #E0E0E0; }
.dot-tomate-arbol { background: #E65100; }

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

/* ── Format selector ── */
.product-formats {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.formats-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--clr-text-light);
  white-space: nowrap;
}

.formats-btns { display: flex; gap: 0.4rem; }

.fmt-btn {
  padding: 0.26rem 0.8rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(16,85,165,.22);
  background: transparent;
  color: var(--clr-text);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.fmt-btn:hover { border-color: var(--clr-blue); color: var(--clr-blue); }
.fmt-btn.active {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
  color: #fff;
}

/* ── Price display ── */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--clr-blue);
  line-height: 1;
  letter-spacing: -0.5px;
}

.price-unit {
  font-size: 0.78rem;
  color: var(--clr-text-light);
}

/* ── WhatsApp buy button ── */
.btn-wa-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.82rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all var(--t-base);
  box-shadow: 0 4px 14px rgba(37,211,102,.28);
  margin-bottom: 1rem;
  text-decoration: none;
}
.btn-wa-buy:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,.42);
}

/* ── Tags ── */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.18rem 0.6rem;
  border-radius: var(--r-full);
  background: var(--clr-bg-alt);
  color: var(--clr-text-light);
  border: 1px solid rgba(16,85,165,.1);
}

/* ── Trust badges bar ── */
.shop-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--clr-bg-alt);
  border: 1px solid rgba(16,85,165,.12);
  border-radius: var(--r-lg);
  padding: 1.25rem 2rem;
  margin: 2.5rem 0 0;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 150px;
  justify-content: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-light);
}
.trust-item svg { color: var(--clr-blue); flex-shrink: 0; }

.more-note {
  color: var(--clr-text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ============================================================
   PACK DE 10 — Oferta Especial
   ============================================================ */
.pack-section {
  padding: var(--sp-2xl) 0;
  background: linear-gradient(170deg, #F0F4FA 0%, var(--clr-bg) 50%, #FFF9E6 100%);
  position: relative;
  overflow: hidden;
}

.pack-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--clr-bg-card);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 48px rgba(16,85,165,.12);
  border: 1.5px solid rgba(16,85,165,.10);
  position: relative;
}

/* Imagen del pack */
.pack-img-col {
  position: relative;
}

.pack-img-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, #FFF9E6, #E8F0FE);
}

.pack-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.pack-img-wrap:hover .pack-photo {
  transform: scale(1.04);
}

.pack-badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
}
.pack-badge {
  display: inline-block;
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(212,43,30,.30);
}

/* Acento bandera */
.pack-flag {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0.75rem;
}
.pack-flag span {
  height: 4px;
  border-radius: 2px;
  display: block;
}
.pack-flag span:nth-child(1) { background: var(--clr-yellow); width: 40px; }
.pack-flag span:nth-child(2) { background: var(--clr-blue);   width: 20px; }
.pack-flag span:nth-child(3) { background: var(--clr-primary); width: 20px; }

/* Info del pack */
.pack-title {
  margin-bottom: 0.75rem;
}
.pack-highlight {
  color: var(--clr-primary);
  position: relative;
}
.pack-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-yellow);
  border-radius: 2px;
}

.pack-desc {
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Sabores */
.pack-flavors {
  margin-bottom: 1.5rem;
}
.pack-flavors-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pack-flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pack-flavor {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.85rem;
  background: var(--clr-bg-alt);
  border: 1px solid rgba(16,85,165,.12);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: all var(--t-fast);
}
.pack-flavor:hover {
  background: rgba(16,85,165,.08);
  border-color: var(--clr-blue);
  transform: translateY(-1px);
}

.pack-flavor-more {
  background: transparent;
  border-style: dashed;
  color: var(--clr-blue);
  font-weight: 700;
}

/* Highlights */
.pack-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pack-hl {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-blue-dk);
}
.pack-hl svg {
  color: var(--clr-yellow);
  flex-shrink: 0;
}

/* Precio y CTA */
.pack-price-block {
  background: linear-gradient(135deg, rgba(16,85,165,.04) 0%, rgba(249,194,46,.06) 100%);
  border: 1px solid rgba(16,85,165,.10);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.pack-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  letter-spacing: -1px;
}
.pack-price-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-light);
}

.pack-price-per {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-blue);
  margin-bottom: 0.2rem;
}

.pack-price-note {
  display: block;
  font-size: 0.72rem;
  color: var(--clr-text-light);
  font-style: italic;
}

/* Botón de compra del pack */
.btn-pack-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5a 100%);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--t-base);
  box-shadow: 0 6px 20px rgba(37,211,102,.30);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-pack-buy:hover {
  background: linear-gradient(135deg, #1ebe5a 0%, #17a84e 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,.42);
}


/* ============================================================
   HOW TO USE
   ============================================================ */
.how-to-use {
  padding: var(--sp-xl) 0;
  background: linear-gradient(180deg, #FFF9E6 0%, #FFE89A 100%);
}
.how-to-use .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--clr-blue);
}

.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 52px; height: 52px;
  background: var(--clr-yellow);
  color: var(--clr-blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 8px rgba(249,194,46,.18);
  position: relative;
  z-index: 3;
}

.step-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--clr-blue);
  opacity: 0.75;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.step-line {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-yellow) 0, var(--clr-yellow) 6px, transparent 6px, transparent 12px);
  opacity: 0.4;
  align-self: flex-start;
  margin-top: 26px;
}

/* ============================================================
   QUALITY — Nueva estructura: header + stats bar + cards grid
   ============================================================ */
.quality {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: linear-gradient(150deg, #0A1D3A 0%, var(--clr-blue-dk) 45%, var(--clr-blue) 100%);
  color: var(--clr-text-white);
}

/* Header centrado */
.quality-hd { margin-bottom: 3rem; }

.quality-title { color: #fff; }

.quality-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- Stats bar horizontal ---- */
.quality-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1rem;
  margin-bottom: 3.5rem;
}

.qsbar-item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.qsbar-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.qsbar-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
}

.qsbar-sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ---- Tarjetas de atributos ---- */
.quality-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.qcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  cursor: default;
}
.qcard:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-4px);
}

.qcard-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
}
.qcard-icon svg {
  width: 100%;
  height: 100%;
}

.qcard-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
}

.qcard-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--sp-xl) 0;
  background: linear-gradient(180deg, var(--clr-bg) 0%, #F0F4FA 100%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid rgba(16,85,165,.12);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}
.faq-item.open { box-shadow: var(--shadow-md); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--clr-blue); }
.faq-q[aria-expanded="true"] { color: var(--clr-blue); }

.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--t-base);
  color: var(--clr-text-light);
}
.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(-180deg);
  color: var(--clr-blue);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
  padding: 0 1.5rem;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-a p {
  font-size: 0.93rem;
  color: var(--clr-text-light);
  line-height: 1.7;
  border-top: 1px solid rgba(16,85,165,.08);
  padding-top: 0.75rem;
}

/* ============================================================
   CTA / CONTACTO
   ============================================================ */
.cta-section {
  padding: var(--sp-xl) 0;
  background: linear-gradient(135deg, var(--clr-yellow-dk) 0%, var(--clr-yellow) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--clr-blue-deep);
  margin-bottom: 0.6rem;
}
.cta-copy p {
  color: rgba(11,29,58,.75);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.cta-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(11,29,58,.55);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-footer);
  color: rgba(255,255,255,.8);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-yellow);
  margin-bottom: 0.9rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 300px;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 0.75rem; }

.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--t-base);
  cursor: pointer;
}
.social-icon:hover {
  background: var(--clr-yellow);
  color: var(--clr-blue-deep);
  border-color: var(--clr-yellow);
  transform: translateY(-2px);
}

.footer-nav h4, .footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--clr-yellow); }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
}
.contact-list svg { flex-shrink: 0; margin-top: 1px; opacity: 0.75; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: var(--z-fab);
  transition: all var(--t-base);
}
.wa-fab:hover {
  background: #1ebe5a;
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.wa-fab:focus-visible {
  outline: 3px solid var(--clr-yellow);
  outline-offset: 3px;
}

/* Pulse ring animation */
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::before { animation: none; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal], [data-reveal-right] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal]       { transform: translateY(28px); }
[data-reveal-right] { transform: translateX(32px); }
[data-reveal].visible, [data-reveal-right].visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   FOCUS STATES (Accessibility)
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ============================================================
   HERO CAROUSEL — Slides con la Abuela
   ============================================================ */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1.06);
}

/* Contenido del slide se posiciona encima */
.hero-slide .hero-center {
  position: relative;
  z-index: 2;
  height: 100%;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Dots de navegación */
.hero-dots {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-base);
  padding: 0;
}
.hero-dot:hover {
  border-color: var(--clr-yellow);
  background: rgba(249,194,46,.3);
}
.hero-dot.active {
  background: var(--clr-yellow);
  border-color: var(--clr-yellow);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(249,194,46,.45);
}

/* Flechas de navegación */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.30);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.80);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  padding: 0;
}
.hero-arrow:hover {
  background: rgba(249,194,46,.25);
  border-color: var(--clr-yellow);
  color: var(--clr-yellow);
}
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }


/* ============================================================
   LA RECETA DE LA ABUELA — Sección con 2 columnas
   ============================================================ */
.abuela-banner {
  padding: var(--sp-2xl) 0;
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}

/* Decoración de fondo sutil */
.abuela-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,194,46,.15) 0%, transparent 70%);
  pointer-events: none;
}
.abuela-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,85,165,.10) 0%, transparent 70%);
  pointer-events: none;
}

.abuela-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Columna de imagen ── */
.abuela-img-col {
  position: relative;
}

.abuela-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,10,.18);
}

.abuela-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.abuela-img-wrap:hover .abuela-photo {
  transform: scale(1.04);
}

/* Decoración bandera en la imagen */
.abuela-flag-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  display: flex;
}
.afd-y { flex: 2; background: var(--clr-yellow); }
.afd-b { flex: 1; background: var(--clr-blue); }
.afd-r { flex: 1; background: var(--clr-primary); }

/* ── Columna de texto ── */
.abuela-text-col {
  position: relative;
  z-index: 2;
}

.abuela-title {
  margin-bottom: 0.5rem;
}

/* Línea bandera bajo el título */
.abuela-flag-line {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.75rem;
}
.abuela-flag-line span {
  height: 4px;
  border-radius: 2px;
  display: block;
}
.abuela-flag-line span:nth-child(1) { background: var(--clr-yellow); width: 48px; }
.abuela-flag-line span:nth-child(2) { background: var(--clr-blue);   width: 24px; }
.abuela-flag-line span:nth-child(3) { background: var(--clr-primary); width: 24px; }

.abuela-desc {
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.abuela-desc strong {
  color: var(--clr-text);
  font-weight: 700;
}

/* Highlights con iconos */
.abuela-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.abuela-hl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212,43,30,.06);
  border: 1px solid rgba(212,43,30,.15);
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: all var(--t-base);
}
.abuela-hl svg {
  color: var(--clr-primary);
  flex-shrink: 0;
}
.abuela-hl:hover {
  background: rgba(212,43,30,.12);
  border-color: rgba(212,43,30,.3);
  transform: translateY(-2px);
}


/* ============================================================
   COMPARTIR EN FAMILIA — Banner Inmersivo Fullwidth
   ============================================================ */
.familia-banner {
  position: relative;
  padding: var(--sp-2xl) 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.familia-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 0.6s ease;
}
.familia-banner:hover .familia-bg {
  transform: scale(1.03);
}

.familia-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,20,40,.90) 0%,
    rgba(10,61,122,.78) 50%,
    rgba(11,20,40,.88) 100%
  );
  z-index: 1;
}

.familia-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Acento bandera */
.familia-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 1.75rem;
}
.familia-flag span {
  height: 4px;
  border-radius: 2px;
  display: block;
}
.familia-flag span:nth-child(1) { background: var(--clr-yellow); width: 40px; }
.familia-flag span:nth-child(2) { background: var(--clr-blue);   width: 20px; }
.familia-flag span:nth-child(3) { background: var(--clr-primary); width: 20px; }

.familia-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.familia-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Stats en fila */
.familia-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.fstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.fstat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(249,194,46,.15);
  border: 1.5px solid rgba(249,194,46,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-yellow);
  transition: all var(--t-base);
}
.fstat:hover .fstat-icon {
  background: rgba(249,194,46,.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249,194,46,.2);
}

.fstat-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.familia-cta {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}


@media (max-width: 1024px) {
  .hero-logo-img  { width: clamp(220px, 42vw, 420px); }
  .hero-center    { padding: 90px 2rem 110px; }
  .hstat          { padding: 0 1.2rem; }
  .hstat-num      { font-size: 1rem; }

  .benefits-grid    { grid-template-columns: 1fr 1fr; }
  .benefit-card     { height: 360px; }
  .products-grid    { grid-template-columns: 1fr 1fr; }
  .trust-item       { min-width: 130px; }

  .quality-cards    { grid-template-columns: repeat(2, 1fr); }

  .abuela-inner     { gap: 2.5rem; }
  .abuela-photo     { height: 400px; }
  .hero-arrow-prev  { left: 1rem; }
  .hero-arrow-next  { right: 1rem; }
  .hero-arrow       { width: 42px; height: 42px; }
  .familia-stats    { gap: 2rem; }

  .pack-inner       { gap: 2.5rem; padding: 2rem; }
  .pack-price       { font-size: 1.8rem; }

  .cta-inner        { flex-direction: column; text-align: center; }
  .cta-actions      { justify-content: center; }

  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --sp-xl:  3rem;
    --sp-2xl: 4rem;
  }

  .nav-links  { display: none; }
  .mobile-btn { display: flex; }

  .hero-logo-img    { width: clamp(200px, 65vw, 340px); }
  .hero-center      { padding: 80px 1.5rem 100px; }
  .hero-desc        { font-size: 0.88rem; max-width: 340px; }
  .hstat            { padding: 0 0.9rem; }
  .hstat-lbl        { letter-spacing: 1px; }
  .hero-scroll-btn  { display: none; }

  .benefits-grid  { grid-template-columns: 1fr; }
  .benefit-card   { height: 320px; }
  .products-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .shop-trust     { flex-direction: column; align-items: flex-start; gap: 0.25rem; padding: 1rem 1.5rem; }
  .trust-item     { min-width: unset; padding: 0.4rem 0; }

  .steps-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .step-line { width: 2px; height: 30px; margin: 0; }

  .quality-stats-bar { flex-wrap: wrap; gap: 1.5rem; }
  .qsbar-sep         { display: none; }
  .qsbar-item        { min-width: 120px; }
  .quality-cards     { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .abuela-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .abuela-photo     { height: 320px; }
  .abuela-highlights { gap: 0.75rem; }
  .abuela-hl        { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
  .hero-arrow       { display: none; }
  .hero-dots        { bottom: 75px; }
  .familia-stats    { gap: 1.5rem; }
  .fstat-icon       { width: 44px; height: 44px; }
  .familia-banner   { min-height: 440px; }

  .pack-inner       { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; }
  .pack-img-wrap    { max-width: 420px; margin: 0 auto; }
  .pack-price-block { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-pack-buy     { justify-content: center; width: 100%; }

  .wa-fab { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .container          { padding: 0 1.25rem; }
  .hero-ctas          { flex-direction: column; align-items: center; }
  .hero-stats-bar     { padding: 0.75rem 1rem; gap: 0; }
  .hstat              { padding: 0 0.65rem; }
  .hstat-num          { font-size: 0.9rem; }
  .hstat-sep          { height: 22px; }
  .cta-actions        { flex-direction: column; align-items: stretch; }
  .btn-wa-large, .btn-outline-w { justify-content: center; }

  .abuela-photo       { height: 260px; }
  .abuela-highlights  { flex-direction: column; gap: 0.6rem; }
  .familia-stats      { flex-direction: column; gap: 1.25rem; align-items: center; }
  .familia-banner     { min-height: 380px; }
  .familia-cta        { width: 100%; justify-content: center; }

  .pack-inner         { padding: 1.25rem; gap: 1.5rem; }
  .pack-price         { font-size: 1.6rem; }
  .pack-highlights    { flex-direction: column; gap: 0.5rem; }
  .pack-flavor-list   { gap: 0.35rem; }
  .pack-flavor        { font-size: 0.75rem; padding: 0.25rem 0.65rem; }
}

/* Screen Reader Only - For SEO and Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
