/* =========================================================================
   ARGENTINA LA LINDA — Dirección A · Fiesta Argentina
   Color-block popular vibrante. Celeste bandera + sol de mayo dorado.
   Vanilla CSS, mobile-first. NO molde luxury.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TOKENS (paleta muestreada del logo oficial)
   ------------------------------------------------------------------------- */
:root {
  /* Marca */
  --celeste: #65A9D4;          /* celeste bandera */
  --celeste-deep: #2A6E9C;     /* fondo de CTAs/chips — AA con texto blanco (5.5:1). Antes #3B8FC4 daba 3.55 (fallaba) */
  --celeste-ink: #1F5E86;      /* celeste oscuro para texto AA sobre claro (6.99:1) */
  --sol: #ECB941;              /* sol de mayo dorado */
  --sol-deep: #D89F2E;         /* borde/sombra del sol */
  --naranja: #FF6B35;          /* acento festivo, a cuentagotas */
  --bone: #FBFAF6;             /* base blanco hueso */
  --bone-2: #F1EFE8;           /* capa 2 */
  --ink: #0E1A2B;             /* tinta */
  --ink-soft: #44505f;         /* texto secundario */
  --white: #FFFFFF;

  /* Tipografía */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing (8pt) */
  --sp-1: 0.5rem;  --sp-2: 1rem;  --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;    --sp-6: 4rem;  --sp-8: 6rem;     --sp-10: 8rem;

  /* Radios y sombras */
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-pill: 999px;
  --shadow-card: 0 10px 30px -12px rgba(14, 26, 43, 0.18);
  --shadow-card-hover: 0 22px 48px -16px rgba(59, 143, 196, 0.42);
  --shadow-cta: 0 8px 22px -8px rgba(59, 143, 196, 0.55);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 70px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--celeste-deep); outline-offset: 3px; border-radius: 4px; }

/* -------------------------------------------------------------------------
   3. TIPOGRAFÍA
   ------------------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; color: var(--ink); }
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--celeste-ink);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--sol); }

/* -------------------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--bone2 { background: var(--bone-2); }

/* Scroll-margin para que la nav fija no tape los headings de sección al navegar */
#catalogo, #stand, #marca, #comprar {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; }
.skip-link:focus-visible {
  left: 12px; top: 12px; width: auto; height: auto;
  background: var(--ink); color: var(--bone); padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm); font-weight: 600;
}

/* -------------------------------------------------------------------------
   4b. LOADER / PRELOADER — sol de mayo dorado latiendo sobre hueso.
   Se va con .is-hidden (fade ~600ms) en window.load (failsafe JS 1.5s).
   No bloquea SEO: el HTML real vive debajo; el loader es aria-hidden.
   ------------------------------------------------------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--bone);
  opacity: 1;
  transition: opacity 600ms var(--ease-out), visibility 0s linear 600ms;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__sol {
  width: clamp(96px, 20vw, 150px);
  aspect-ratio: 1;
  filter: drop-shadow(0 10px 26px rgba(216,159,46,0.38));
  animation: loader-pulse 1100ms var(--ease-out) infinite alternate;
  transform-origin: center;
}
.loader__sol svg { width: 100%; height: 100%; }
@keyframes loader-pulse {
  from { transform: scale(0.86) rotate(-6deg); opacity: 0.75; }
  to   { transform: scale(1) rotate(6deg);     opacity: 1; }
}
/* reduced-motion → sol estático, fade instantáneo, sin latido ni giro */
@media (prefers-reduced-motion: reduce) {
  .loader { transition: opacity 200ms ease, visibility 0s linear 200ms; }
  .loader__sol { animation: none; transform: none; }
}

/* -------------------------------------------------------------------------
   5. BOTONES (padding HOLGADO por largo de texto — regla TWL)
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em;
  border-radius: var(--r-pill); transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background-color 220ms var(--ease-out);
  white-space: nowrap; line-height: 1;
}
/* 3-4 palabras → px-8 py-3.5 equivalente */
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--md { padding: 0.85rem 1.6rem; font-size: 0.95rem; }
.btn--primary { background: var(--celeste-deep); color: var(--white); box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: #235d84; transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(31,94,134,0.6); }
/* Pedido 2: todos los BTN verdes con texto BLANCO (Director) */
.btn--wa { background: #25D366; color: #ffffff; box-shadow: 0 8px 22px -8px rgba(37,211,102,0.5); }
.btn--wa:hover { background: #1ebe5a; color: #ffffff; transform: translateY(-2px); }
.btn--wa:focus { color: #ffffff; }
.btn--wa:focus-visible { color: #ffffff; }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid rgba(14,26,43,0.18); }
.btn--ghost:hover { border-color: var(--celeste-deep); color: var(--celeste-ink); transform: translateY(-2px); }
.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

/* -------------------------------------------------------------------------
   6. NAV FIXED — transparente sobre hero, sólida al scrollear
   ------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  /* TRANSPARENTE por defecto — sobre el hero */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 320ms var(--ease-out),
    border-color 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}
/* Scrolled: fondo sólido bone + sombra */
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bone) 96%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(14,26,43,0.10);
  box-shadow: 0 6px 20px -16px rgba(14,26,43,0.5);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

/* Colores nav en estado TRANSPARENTE (sobre hero) — blancos/claros */
.nav__brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 800; font-size: 0.98rem;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.01em;
  transition: color 320ms var(--ease-out);
}
/* Contenedor de logos: dimensiones fijas para que el nav no haga layout shift
   al intercambiar las dos imágenes. Ambas imágenes en posición absoluta
   superpuestas — solo cambia opacity, cero reflow. */
.nav__brand {
  position: relative;  /* ya tiene display:flex, sobreescribimos el valor */
  /* Ancho calculado: logo tiene ~aspect ratio 4:1 aprox a 54px de alto → ~180px max */
  width: auto;
  min-width: 54px;
}
/* Wrapper interno para los logos superpuestos */
.nav__logos-wrap {
  position: relative;
  height: 54px;
  /* El ancho lo define la imagen más ancha — usamos la del logo a color como referencia */
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 54px;
  width: auto;
  transition: opacity 320ms var(--ease-out), filter 320ms var(--ease-out);
  display: block;
}
/* Logo blanco: visible por defecto (nav transparente sobre hero) */
.nav__logo--white {
  position: relative; /* en flujo — define el ancho del wrapper */
  filter: drop-shadow(0 1px 4px rgba(8,20,34,0.45));
  opacity: 1;
}
/* Logo color: superpuesto sobre el blanco, invisible por defecto */
.nav__logo--color {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
}

/* --- Scrolled: intercambia logos — pura opacity, cero layout shift, cero flash --- */
.nav.is-scrolled .nav__logo--white {
  opacity: 0;
  pointer-events: none;
}
.nav.is-scrolled .nav__logo--color {
  opacity: 1;
  pointer-events: auto;
}

/* Scrolled: brand vuelve a tinta */
.nav.is-scrolled .nav__brand { color: var(--celeste-ink); }

.nav__links { display: none; align-items: center; gap: 1.6rem; }
.nav__links a {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  position: relative; padding-block: 0.3rem;
  transition: color 320ms var(--ease-out);
  text-shadow: 0 1px 3px rgba(8,20,34,0.5);
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--sol); border-radius: 2px; transition: width 240ms var(--ease-out); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { width: 100%; }

/* Scrolled: links vuelven a tinta, sin text-shadow */
.nav.is-scrolled .nav__links a { color: var(--ink); text-shadow: none; }

/* CTA "Ver catálogo" — en transparente: fondo blanco semitransparente con tinta */
.nav__cta {
  display: none;
  /* Override del btn--primary: sobre hero usamos blanco sólido */
  background: rgba(255,255,255,0.88) !important;
  color: var(--celeste-ink) !important;
  box-shadow: 0 4px 14px -6px rgba(8,20,34,0.35);
  transition: background-color 320ms var(--ease-out), color 320ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
/* Scrolled: CTA vuelve al btn--primary original */
.nav.is-scrolled .nav__cta {
  background: var(--celeste-deep) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-cta);
}
.nav__cta:hover {
  transform: translateY(-2px);
}

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
}

/* ---- Hamburguesa + menú mobile ---- */
.nav__burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; margin-left: auto;
  background: none; border: 0; cursor: pointer; border-radius: 10px;
}
/* Transparente (sobre hero): líneas blancas con sombra para legibilidad */
.nav__burger span {
  display: block; height: 2.5px; width: 100%;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  transition: transform 260ms var(--ease-out), opacity 200ms, background-color 320ms var(--ease-out);
  box-shadow: 0 1px 3px rgba(8,20,34,0.45);
}
/* Scrolled: líneas de tinta */
.nav.is-scrolled .nav__burger span { background: var(--celeste-ink); box-shadow: none; }
.nav__burger:focus-visible { outline: 2px solid var(--celeste-deep); outline-offset: 2px; }
@media (min-width: 860px) { .nav__burger { display: none; } }

.nav__overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(8,20,34,0.5); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 280ms var(--ease-out);
}
.nav__overlay.is-open { opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 95;
  height: 100dvh; width: min(82vw, 340px);
  background: var(--bone); box-shadow: -12px 0 40px -16px rgba(8,20,34,0.4);
  transform: translateX(100%); transition: transform 320ms var(--ease-out);
  display: flex; flex-direction: column; padding: 1.2rem 1.4rem 2rem;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; color: var(--celeste-ink); border-radius: 10px;
}
.mobile-menu__close svg { width: 26px; height: 26px; }
.mobile-menu__close:focus-visible { outline: 2px solid var(--celeste-deep); outline-offset: 2px; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.8rem; }
.mobile-menu__links a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink);
  padding: 0.7rem 0.4rem; border-bottom: 1px solid rgba(14,26,43,0.08);
}
.mobile-menu__links a:active { color: var(--celeste-deep); }
.mobile-menu__cta { margin-top: 1.2rem; justify-content: center; border-bottom: 0 !important; }
/* Texto blanco explícito — la regla `.mobile-menu__links a` (ink) gana por specificity */
.mobile-menu__links .mobile-menu__cta,
.mobile-menu__links .mobile-menu__cta:hover,
.mobile-menu__links .mobile-menu__cta:focus,
.mobile-menu__links .mobile-menu__cta:focus-visible { color: var(--white); background: var(--celeste-deep); }
body.menu-open { overflow: hidden; }
@media (min-width: 860px) { .nav__overlay, .mobile-menu { display: none !important; } }

/* -------------------------------------------------------------------------
   7. HERO — VARIANTE FULL-BLEED (activa)
   Imagen full-width + scrim celeste para legibilidad del texto.
   Sol de mayo = gancho visual, siempre visible.
   100svh garantizado, todo en el fold.
   REVERSIBLE: el CSS del split original está comentado al final de esta sección.
   ------------------------------------------------------------------------- */

/* ---- HERO CONTENEDOR full-bleed ---- */
.hero {
  /* 100svh: la nav fixed está superpuesta (no resta height), el hero arranca en top:0 */
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  /* Fallback color mientras carga la imagen */
  background: var(--celeste-deep);
}

/* Scrim superior para nav — oscurece el borde superior del hero (150px)
   en todo ancho para que el logo/links blancos sean legibles incluso
   sobre la zona derecha clara (foto crema). Contraste AA ≥4.5:1 medido.
   Color cálido tierra-ámbar (58,40,12) coherente con el scrim lateral del hero.
   Calculado: rgba(58,40,12,0.76) @ y=0 → alpha efectiva ~0.58 @ y=35px (centro nav)
   → fondo compuesto rgb(126,112,88) → contraste blanco: 4.83:1 (AA ✓)
   Se ubica por encima de la foto pero debajo del copy-panel. */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 150px;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(58,40,12,0.76) 0%, transparent 100%);
  pointer-events: none;
}

/* ---- IMAGEN full-bleed de fondo ---- */
/* El panel foto se convierte en el canvas completo del hero */
.hero__photo-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Fallback antes del paint */
  background: #c8c0b2;
}
.hero__photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* SOL DE MAYO: centrado en el bordado del pecho (≈ 55% x, 42% y).
     Empuja el encuadre hacia el centro-izquierda para que el sol quede
     en la zona de máxima visibilidad (justo sobre el scrim).
     CERO CARA: la imagen ya viene recortada — sin cabeza en el encuadre. */
  object-position: 55% 42%;
  /* Render suave para upscale del tejido; el sol bordado se mantiene nítido */
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

/* ---- SCRIM celeste — legibilidad + identidad Dirección A ---- */
/* Gradiente celeste profundo → transparente: mantiene la paleta y da contraste AA */
.hero__photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Mobile: gradiente de arriba hacia abajo (texto encima, sol abajo).
     Tramo superior reforzado (≥0.90) → texto blanco AA aunque la foto sea crema clara.
     Se aclara recién en el tercio inferior para no tapar el sol de mayo bordado. */
  /* Scrim cálido tono sol de mayo (ámbar/dorado): armoniza con la foto crema y la deja ver.
     La legibilidad del texto blanco la sostiene el text-shadow. */
  background: linear-gradient(
    to bottom,
    rgba(92, 62, 16, 0.60) 0%,
    rgba(110, 76, 22, 0.46) 38%,
    rgba(176, 128, 44, 0.26) 64%,
    rgba(236, 185, 65, 0.10) 84%,
    rgba(236, 185, 65, 0.02) 100%
  );
}

/* Franjas bandera al pie del hero — encima del scrim */
.hero__stripes {
  position: absolute; inset: auto 0 0 0; height: 14px;
  display: flex; opacity: 0.85; z-index: 5;
}
.hero__stripes span { flex: 1; }
.hero__stripes span:nth-child(odd)  { background: var(--celeste); }
.hero__stripes span:nth-child(even) { background: rgba(255,255,255,0.9); }

/* ---- PANEL COPIA — flota sobre la imagen ---- */
.hero__copy-panel {
  position: relative;
  z-index: 2;          /* encima de la imagen y del scrim */
  flex: 1;
  display: flex;
  align-items: center;
  background: transparent;  /* TRANSPARENTE: el scrim provee el fondo visual */
  padding: calc(var(--nav-h) + 1.8rem) clamp(1.1rem, 5vw, 3rem) clamp(2rem, 5vw, 3rem);
}

.hero__copy {
  width: 100%;
  max-width: 38rem;
}

/* Texto blanco sobre scrim celeste → contraste ≥ 7:1 (WCAG AAA) */
.hero h1 {
  font-size: clamp(2rem, 6.5vw, 4.6rem);
  margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
  /* Shadow fuerte: sostiene la legibilidad ahora que el scrim azul es más liviano */
  text-shadow: 0 1px 2px rgba(8,20,34,0.6), 0 2px 16px rgba(8,20,34,0.55), 0 0 38px rgba(8,20,34,0.32);
}
.hero h1 .accent   { color: var(--sol); }
.hero h1 .sol-word { position: relative; white-space: nowrap; }

.hero__logo {
  height: clamp(64px, 10vw, 96px);
  width: auto;
  margin-bottom: clamp(0.8rem, 2vw, 1.3rem);
  /* Drop shadow para que el logo respire sobre el scrim */
  filter: drop-shadow(0 2px 8px rgba(14,26,43,0.35));
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.95);
  max-width: 32rem;
  margin-bottom: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.65;
  /* Sombra reforzada: legibilidad con scrim aliviado */
  text-shadow: 0 1px 2px rgba(8,20,34,0.7), 0 2px 12px rgba(8,20,34,0.6), 0 0 26px rgba(8,20,34,0.35);
}

/* Mobile (≤ 559px): ambos CTAs en una fila — flex:1 para distribuir ancho equitativo */
.hero__ctas {
  display: flex;
  flex-wrap: nowrap;    /* fila única, sin salto de línea */
  gap: 0.55rem;
}
/* En mobile los botones se vuelven un poco más compactos para caber en 360px */
@media (max-width: 559px) {
  .hero__ctas .btn--lg {
    flex: 1;             /* ambos botones comparten el ancho disponible */
    padding-inline: 0.9rem;
    font-size: 0.9rem;
    min-width: 0;        /* permite shrink si es necesario */
  }
}
/* Desktop / tablet: vuelve a wrap y tamaño normal */
@media (min-width: 560px) {
  .hero__ctas {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1rem 1.6rem;
  margin-top: clamp(1.8rem, 3.4vw, 2.6rem);
}
.hero__meta li   { display: flex; align-items: center; gap: 0.55rem; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.98); text-shadow: 0 1px 2px rgba(8,20,34,0.7), 0 2px 12px rgba(8,20,34,0.55), 0 0 22px rgba(8,20,34,0.3); }
.hero__meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sol); flex: none; }

/* CTAs sobre scrim: btn--primary usa blanco sólido para máximo contraste */
.hero .btn--primary {
  background: var(--white);
  color: var(--celeste-ink);
  box-shadow: 0 8px 22px -8px rgba(14,26,43,0.35);
}
.hero .btn--primary:hover {
  background: var(--bone);
  transform: translateY(-2px);
}

@keyframes sol-spin { to { transform: rotate(360deg); } }

/* ---- DESKTOP (≥ 760px): scrim lateral para foto a la derecha ---- */
@media (min-width: 760px) {
  /* En desktop el scrim viene desde la izquierda:
     texto a la izquierda sobre celeste, foto con sol a la derecha visible */
  .hero__photo-panel::after {
    background: linear-gradient(
      to right,
      rgba(92, 62, 16, 0.60) 0%,
      rgba(110, 76, 22, 0.44) 36%,
      rgba(176, 128, 44, 0.24) 58%,
      rgba(236, 185, 65, 0.08) 80%,
      transparent 100%
    );
  }

  /* Imagen: en desktop el sol está a la derecha del encuadre.
     object-position desplaza a la derecha para que el sol quede
     en la zona clara del scrim (≥ 55% del ancho = zona de menor opacidad). */
  .hero__photo-panel img {
    object-position: 62% 38%;
  }

  /* Panel copia: ocupa aprox. 50% izquierdo del hero.

     CENTRADO VERTICAL REAL:
     - El panel es flex:1, height = 100svh completo.
     - justify-content:center reparte el espacio sobrante arriba y abajo del bloque de copy.
     - El padding-top e igual padding-bottom son SIMÉTRICOS (solo offset lateral/horizontal).
       Para garantía de "nunca queda bajo la nav", el contenido se centra naturalmente
       y el loader/interacción JS agrega .nav--solid si scroll, no afecta al hero.
     - Desplazamiento visual: padding-bottom levemente mayor que padding-top (1rem extra)
       sube el bloque ~medio centímetro por encima del centro exacto → "peso visual arriba" pro.

     Cálculo: padding-top = nav-h (70px) como piso absoluto de seguridad.
              padding-bottom = nav-h + 1rem → contenido queda ligeramente por encima del centro. */
  .hero__copy-panel {
    max-width: 52%;
    padding-inline: clamp(2rem, 4vw, 3.5rem);
    padding-top: var(--nav-h);
    padding-bottom: calc(var(--nav-h) + 1rem);
    /* flex-direction:column + justify-content:center = centrado vertical real.
       El panel es flex:1 (height = 100svh). El bloque de copy queda centrado
       en el espacio disponible. padding-top = nav-h como piso de seguridad. */
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .hero .hero__copy { max-width: 44rem; }
}

/* ---- DESKTOP AMPLIO (≥ 1100px) ---- */
@media (min-width: 1100px) {
  /* Scrim levemente más corto para dejar más foto visible */
  .hero__photo-panel::after {
    background: linear-gradient(
      to right,
      rgba(92, 62, 16, 0.58) 0%,
      rgba(110, 76, 22, 0.42) 34%,
      rgba(176, 128, 44, 0.22) 56%,
      rgba(236, 185, 65, 0.07) 78%,
      transparent 100%
    );
  }
  .hero__copy-panel {
    max-width: 48%;
  }
}

/* =========================================================================
   HERO — COMPRESIÓN VERTICAL (max-height queries)
   Garantiza que TODO el contenido del hero entra en viewport visible
   con breathing room ≥ 20px arriba del logo y ≥ 24px debajo del último CTA,
   a partir de 600px de altura, sin romper mobile (390×844 entra bien).
   ========================================================================= */

/* ---- Alturas ≤ 700px: reducción moderada (701+ usa el espaciado base, con aire) ---- */
@media (min-width: 760px) and (max-height: 700px) {
  .hero__copy-panel {
    /* Reducir padding-top: de calc(nav+2.8rem) a calc(nav+1.2rem) */
    padding: calc(var(--nav-h) + 1.2rem) clamp(2rem, 4vw, 3.5rem) 1.8rem;
    justify-content: center;
  }
  .hero__logo {
    height: 64px;
    margin-bottom: 0.6rem;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 5.5vw, 3.4rem);
    margin-bottom: 0.7rem;
  }
  .hero__sub {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 1.1rem;
  }
  .hero__meta {
    margin-top: 1rem;
    gap: 0.6rem 1.2rem;
  }
}

/* ---- Alturas ≤ 680px: reducción fuerte ---- */
@media (min-width: 760px) and (max-height: 680px) {
  .hero__copy-panel {
    padding: calc(var(--nav-h) + 0.5rem) clamp(2rem, 4vw, 3.5rem) 1rem;
    justify-content: center;
  }
  .hero__logo {
    height: 54px;
    margin-bottom: 0.4rem;
  }
  .hero h1 {
    font-size: clamp(1.45rem, 4.8vw, 2.9rem);
    margin-bottom: 0.55rem;
    line-height: 1.06;
  }
  .hero__sub {
    font-size: 0.9rem;
    line-height: 1.38;
    margin-bottom: 0.85rem;
  }
  .hero__ctas { gap: 0.55rem; }
  /* Comprimir padding vertical de CTAs en hero (mantener lateral holgado) */
  .hero .btn--lg {
    padding-block: 0.75rem;
  }
  .hero__meta {
    margin-top: 0.7rem;
    gap: 0.4rem 1rem;
    font-size: 0.82rem;
  }
}

/* ---- Alturas ≤ 600px: mínimo absoluto — todo entra igual ---- */
@media (min-width: 760px) and (max-height: 600px) {
  .hero__copy-panel {
    padding: calc(var(--nav-h) + 0.2rem) clamp(2rem, 4vw, 3.5rem) 0.6rem;
    justify-content: center;
    align-items: flex-start;
  }
  .hero__logo {
    height: 42px;
    margin-bottom: 0.3rem;
  }
  .hero h1 {
    font-size: clamp(1.2rem, 4vw, 2.3rem);
    margin-bottom: 0.3rem;
    line-height: 1.07;
  }
  .hero__sub {
    font-size: 0.84rem;
    line-height: 1.32;
    margin-bottom: 0.55rem;
  }
  .hero__ctas { gap: 0.4rem; }
  .hero .btn--lg {
    padding-block: 0.6rem;
    font-size: 0.9rem;
  }
  .hero__meta {
    margin-top: 0.45rem;
    gap: 0.25rem 0.8rem;
    font-size: 0.78rem;
  }
  .hero__meta .dot { width: 6px; height: 6px; }
}

/* =====================================================================
   SPLIT PANEL ORIGINAL — COMENTADO (reversible)
   Para volver al split: descomentar este bloque y comentar el bloque full-bleed arriba.
   =====================================================================

.hero {
  min-height: calc(100svh - var(--nav-h));
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bone);
}
.hero__photo-panel {
  position: relative;
  width: 100%;
  height: clamp(240px, 48vw, 340px);
  overflow: hidden;
  background: #d9d5cc;
  flex: none;
}
.hero__photo-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
}
.hero__copy-panel {
  flex: 1; display: flex; align-items: center;
  background: var(--bone);
  padding: clamp(1.6rem, 4vw, 2.8rem) clamp(1.1rem, 5vw, 3rem);
  position: relative; z-index: 1;
}
@media (min-width: 760px) {
  .hero { flex-direction: row; align-items: stretch; min-height: 100svh; min-height: 100vh; }
  .hero__copy-panel {
    flex: 0 0 50%; width: 50%; height: auto; align-self: stretch;
    background: var(--celeste-deep);
    padding: calc(var(--nav-h) + 2.5rem) clamp(2rem, 4vw, 3.5rem) 3rem;
    align-items: flex-start;
  }
  .hero h1 { color: var(--white); }
  .hero h1 .accent { color: var(--sol); }
  .hero__sub { color: rgba(255,255,255,0.88); }
  .hero__meta li { color: rgba(255,255,255,0.9); }
  .hero .btn--primary { background: var(--white); color: var(--celeste-ink); }
  .hero__photo-panel { flex: 0 0 50%; width: 50%; height: auto; align-self: stretch; min-height: unset; }
  .hero__photo-panel img { object-position: 50% 38%; }
  .hero__sol { display: block; }
}
@media (min-width: 1100px) {
  .hero__copy-panel  { flex: 0 0 46%; width: 46%; }
  .hero__photo-panel { flex: 0 0 54%; width: 54%; align-self: stretch; }
}

===================================================================== */

/* -------------------------------------------------------------------------
   8. SEPARADOR SOL
   ------------------------------------------------------------------------- */
.sun-divider { display: flex; align-items: center; gap: 1rem; color: var(--sol-deep); }
.sun-divider::before, .sun-divider::after { content: ""; height: 2px; flex: 1; background: linear-gradient(90deg, transparent, rgba(216,159,46,0.5), transparent); }
.sun-divider svg { width: 34px; height: 34px; flex: none; }

/* -------------------------------------------------------------------------
   9. SECTION HEADER
   ------------------------------------------------------------------------- */
.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section__head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-top: 0.7rem; }
.section__head p { color: var(--ink-soft); margin-top: 0.8rem; font-size: 1.05rem; }

/* -------------------------------------------------------------------------
   10. CATÁLOGO — chips sticky + grilla
   ------------------------------------------------------------------------- */
.catalogo { background: var(--bone); }
.filtros {
  position: sticky; top: var(--nav-h); z-index: 40;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding: 0.9rem 0;
  background: color-mix(in srgb, var(--bone) 90%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
}
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  padding: 0.6rem 1.1rem; border-radius: var(--r-pill);
  background: var(--bone-2); color: var(--ink);
  border: 2px solid transparent;
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.chip:hover { transform: translateY(-2px); border-color: rgba(101,169,212,0.5); }
.chip[aria-pressed="true"] { background: var(--celeste-deep); color: var(--white); border-color: var(--celeste-deep); }

.grid {
  display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grid { grid-template-columns: repeat(3, 1fr); } }

/* CARD */
.card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(14,26,43,0.05);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }

/* MEDIA — slot photo-ready. */
.producto-media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  display: grid; place-items: center;
  background: var(--bone-2);
}

/* Card con fotos reales — mini-galería hover sin layout shift */
.producto-media--with-photo { display: block; }
.producto-media--with-photo .producto-media__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  will-change: opacity;
}
.producto-media--with-photo .producto-media__img--primary {
  opacity: 1;
  transition: opacity 420ms var(--ease-out);
}
.producto-media--with-photo .producto-media__img--hover {
  opacity: 0;
  transition: opacity 420ms var(--ease-out);
}
/* Swap al hover de la card — GPU only (opacity), sin repaint */
.card:hover .producto-media--with-photo .producto-media__img--primary { opacity: 0; }
.card:hover .producto-media--with-photo .producto-media__img--hover   { opacity: 1; }

/* reduced-motion: sin transición de swap */
@media (prefers-reduced-motion: reduce) {
  .producto-media--with-photo .producto-media__img--primary,
  .producto-media--with-photo .producto-media__img--hover { transition: none; }
}

/* Zoom-in hover — la misma foto escala suave (overflow:hidden del contenedor recorta) */
.producto-media--with-photo .producto-media__img--zoom {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.card:hover .producto-media--with-photo .producto-media__img--zoom {
  transform: scale(1.09);
}
/* reduced-motion: sin zoom */
@media (prefers-reduced-motion: reduce) {
  .producto-media--with-photo .producto-media__img--zoom { transition: none; }
  .card:hover .producto-media--with-photo .producto-media__img--zoom { transform: none; }
}

.producto-media__img { width: 100%; height: 100%; object-fit: cover; }
.producto-media__ph { position: absolute; inset: 0; display: grid; place-items: center; }
.producto-media__ph .ph-sol {
  position: absolute; width: 46%; aspect-ratio: 1; opacity: 0.9;
  transition: transform 600ms var(--ease-out);
  top: 12%;
}
.card:hover .producto-media__ph .ph-sol { transform: rotate(40deg); }
.producto-media__ph .ph-silueta { position: relative; z-index: 1; width: 58%; opacity: 0.92; }

/* ---- TOUCH (sin hover real): neutralizar efectos hover para que no queden "pegados" al tocar ----
   En mobile el :hover se dispara con el tap y se traba; en dispositivos sin hover mostramos
   la foto primaria fija, sin swap, sin zoom y sin lift. */
@media (hover: none) {
  .card:hover { transform: none; box-shadow: var(--shadow-card); }
  .card:hover .producto-media--with-photo .producto-media__img--primary { opacity: 1; }
  .card:hover .producto-media--with-photo .producto-media__img--hover   { opacity: 0; }
  .card:hover .producto-media--with-photo .producto-media__img--zoom    { transform: none; }
  .card:hover .producto-media__ph .ph-sol { transform: none; }
}
.producto-media__ph .ph-name {
  position: absolute; left: 0; right: 0; bottom: 10%; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--ink); padding-inline: 1rem; z-index: 2; opacity: 0.85;
}
/* variantes de color-block del placeholder (intencional, no "falta foto") */
.producto-media--celeste .producto-media__ph { background: linear-gradient(150deg, #cfe6f4, #9fcbe6); }
.producto-media--bone .producto-media__ph    { background: linear-gradient(150deg, var(--bone-2), #e3ddcf); }
.producto-media--sol .producto-media__ph      { background: linear-gradient(150deg, #fbeec9, #f3d68a); }

.card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.card__cat { font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--celeste-ink); }
.card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.card__disp { font-size: 0.82rem; color: var(--ink-soft); margin-top: -0.1rem; }
.card__cta { margin-top: auto; width: 100%; }

/* -------------------------------------------------------------------------
   11. SOBRE LA MARCA
   ------------------------------------------------------------------------- */
.marca__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.6rem); align-items: center; }
.marca__text .eyebrow { display: inline-block; margin-bottom: 1rem; }
.marca__text h2 { margin-bottom: 1.3rem; }
.marca__text p { color: var(--ink-soft); margin-top: 1.25rem; max-width: 38rem; line-height: 1.7; }
.marca__text p strong { color: var(--ink); font-weight: 700; }
.marca__badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.2rem; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid rgba(14,26,43,0.08); border-radius: var(--r-pill); padding: 0.55rem 1rem; font-weight: 600; font-size: 0.86rem; box-shadow: var(--shadow-card); }
.badge .b-dot { width: 9px; height: 9px; border-radius: 50%; }
/* panel decorativo color-block con sol */
.marca__art {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden;
  background: var(--bone-2); box-shadow: var(--shadow-card);
}
.marca__art img {
  width: 100%; height: 100%; object-fit: cover;
  /* Bajamos el encuadre para mostrar las prendas colgadas y la mesa (no la carpa/árboles de arriba) */
  object-position: center 64%;
  display: block;
}
@media (min-width: 820px) { .marca__grid { grid-template-columns: 1.05fr 0.95fr; } }

/* -------------------------------------------------------------------------
   12. CÓMO COMPRAR
   ------------------------------------------------------------------------- */
.pasos { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.5vw, 1.6rem); }
@media (min-width: 720px) { .pasos { grid-template-columns: repeat(3, 1fr); } }
.paso {
  background: var(--white); border-radius: var(--r-lg); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-card); border: 1px solid rgba(14,26,43,0.05);
  display: flex; flex-direction: column; gap: 0.7rem; height: 100%;
}
.paso__ico { width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: 0.3rem; }
.paso__ico svg { width: 28px; height: 28px; }
.paso--wa .paso__ico { background: rgba(37,211,102,0.14); color: #1ba954; }
.paso--feria .paso__ico { background: rgba(101,169,212,0.16); color: var(--celeste-ink); }
.paso--envio .paso__ico { background: rgba(236,185,65,0.18); color: var(--sol-deep); }
.paso h3 { font-size: 1.2rem; }
.paso p { color: var(--ink-soft); font-size: 0.96rem; }
.paso .paso__cta { margin-top: auto; padding-top: 0.4rem; }
.paso__cta a { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--celeste-ink); display: inline-flex; align-items: center; gap: 0.4rem; }
.paso__cta a:hover { color: var(--celeste-deep); }

/* Lista de ferias dentro del paso (Cómo comprar) */
.paso__ferias { display: flex; flex-direction: column; gap: 0.45rem; margin: 0.2rem 0 0.2rem; }
.paso__ferias li { font-size: 0.92rem; color: var(--ink); line-height: 1.45; padding-left: 1.05rem; position: relative; }
.paso__ferias li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--sol); }
.paso__ferias li strong { font-weight: 700; color: var(--celeste-ink); }
.paso__nota { font-size: 0.9rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------------
   12b. STAND / VIDEO DE FERIA — encuadre vertical tipo teléfono
   Video 9:16, aspect-ratio fijo (sin layout shift). Color-block celeste.
   ------------------------------------------------------------------------- */
.section--stand { background: var(--bone-2); }
.stand__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 3rem);
  align-items: center;
}
@media (min-width: 880px) {
  .stand__grid { grid-template-columns: 1fr 0.82fr; gap: clamp(2.2rem, 5vw, 4rem); }
}
.stand__copy h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-top: 0.7rem; }
.stand__copy > p { color: var(--ink-soft); margin-top: 0.9rem; font-size: 1.05rem; max-width: 34rem; }
.stand__points { display: flex; flex-direction: column; gap: 0.55rem; margin: 1.4rem 0 1.7rem; }
.stand__points li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.stand__points .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--celeste-deep); flex: none; }

/* Marco "teléfono" — color-block celeste con franja sol */
.stand__phone { display: flex; justify-content: center; }
.stand__phone-frame {
  position: relative;
  width: 100%; max-width: 320px;
  aspect-ratio: 9 / 16;          /* reserva el espacio: CERO layout shift */
  border-radius: 30px; overflow: hidden;
  background: linear-gradient(150deg, var(--celeste) 0%, #4f97c6 60%, var(--celeste-deep) 100%);
  box-shadow: 0 26px 60px -22px rgba(31,94,134,0.55), 0 4px 0 rgba(255,255,255,0.5) inset;
  padding: 10px;
}
.stand__video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  background: #1a3346;
}
/* sol de mayo girando, esquina del marco */
.stand__sun {
  position: absolute; z-index: 3; pointer-events: none;
  width: 64px; aspect-ratio: 1; right: -14px; top: -14px;
  filter: drop-shadow(0 6px 14px rgba(216,159,46,0.45));
  animation: sol-spin 80s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .stand__sun { animation: none; }
}

/* -------------------------------------------------------------------------
   13. CTA BANNER FINAL
   ------------------------------------------------------------------------- */
.cta-banner { background: linear-gradient(135deg, var(--celeste) 0%, #4990bd 100%); color: var(--white); border-radius: var(--r-lg); padding: clamp(2.2rem, 6vw, 3.4rem); text-align: center; position: relative; overflow: hidden; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 34rem; margin: 0.8rem auto 1.6rem; }
/* CTA banner: botón WA con fondo blanco pero texto BLANCO NO aplica aquí
   (fondo blanco + texto blanco = ilegible). En el banner el btn usa fondo
   blanco SOLO como diferenciación visual del fondo celeste del banner.
   El texto debe ser ink oscuro para contraste sobre el fondo blanco del btn. */
.cta-banner .btn--wa { background: var(--white); color: var(--celeste-ink); }
.cta-banner .btn--wa:hover { background: var(--bone); color: var(--celeste-ink); }
.cta-banner .cta-sol { position: absolute; width: 220px; opacity: 0.18; right: -40px; bottom: -50px; animation: sol-spin 70s linear infinite; }

/* -------------------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(242,241,238,0.86); padding-block: clamp(2.6rem, 6vw, 3.6rem); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand img { height: 64px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.92rem; max-width: 26rem; color: rgba(242,241,238,0.7); }
.footer h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sol); margin-bottom: 1rem; }
.footer__links a, .footer__links li { font-size: 0.94rem; margin-bottom: 0.6rem; color: rgba(242,241,238,0.82); display: block; }
.footer__links a:hover { color: var(--white); }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(242,241,238,0.08); color: rgba(242,241,238,0.85);
  border: 1px solid rgba(242,241,238,0.14);
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.footer__social a:hover { background: var(--sol); color: var(--ink); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__social a:focus-visible { outline: 2px solid var(--sol); outline-offset: 2px; }
.footer__bottom { border-top: 1px solid rgba(242,241,238,0.12); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; justify-content: space-between; align-items: center; font-size: 0.84rem; color: rgba(242,241,238,0.6); }
.footer__bottom a { color: var(--celeste); font-weight: 600; }
.footer__bottom a:hover { color: var(--white); }

/* WhatsApp flotante */
.wa-float {
  position: fixed; right: clamp(1rem, 4vw, 1.8rem); bottom: clamp(1rem, 4vw, 1.8rem); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,0.65);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 34px -8px rgba(37,211,102,0.75); }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================================
   14b. HERO ENTRADA — animación full-bleed al load
   Full-bleed: la imagen se revela con fade-scale, el copy sube desde abajo.
   ========================================================================= */

/* Imagen fondo: fade in + leve scale de profundidad */
.hero__photo-panel {
  animation: hero-img-in 1200ms cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}
@keyframes hero-img-in {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* Copy: desliza desde abajo — dramático, perceptible */
.hero__copy-panel {
  animation: hero-copy-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: none; }
}

/* reduced-motion → fade simple, NO off */
@media (prefers-reduced-motion: reduce) {
  .hero__photo-panel {
    animation: hero-fade-in 400ms ease 0s both;
  }
  .hero__copy-panel {
    animation: hero-fade-in 400ms ease 0.1s both;
  }
  @keyframes hero-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}

/* =========================================================================
   15. ANIMACIONES — triple seguridad (CSS fallback + IO + brute force)
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-out);
  animation: reveal-css-fallback 1000ms var(--ease-out) 1.2s forwards; /* safety net si JS falla */
}
.reveal.is-visible { opacity: 1; transform: none; animation: none; }
@keyframes reveal-css-fallback { to { opacity: 1; transform: none; } }

/* stagger del catálogo */
.reveal[data-stagger] { transition-delay: calc(var(--i, 0) * 70ms); }

/* reduced-motion → fade simple, NUNCA estático ni off */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: none;
    transition: opacity 320ms ease;
    animation: reveal-fade-only 320ms ease 0.35s forwards;
  }
  .reveal.is-visible { opacity: 1; animation: none; }
  @keyframes reveal-fade-only { to { opacity: 1; } }
  .marca__art .art-sol, .cta-banner .cta-sol { animation: none; }
  .card__cta, .card { transition: none; }
  .producto-media__ph .ph-sol { transition: none; }
}
