/* ═══════════════════════════════════════════
   DON JUAN — V2 · Editorial Magazine Style
   Campirana mexicana con composición tipo revista
   ═══════════════════════════════════════════ */

:root {
  --cream: #F5E6C8;
  --cream-light: #FAF0D8;
  --cream-deeper: #EBD8AE;
  --paper: #f0e2bd;
  --wood-dark: #1A0E06;
  --wood-mid: #3D2817;
  --wood-light: #8a6030;
  --wood-lightest: #C9A66B;
  --red: #C0392B;
  --red-deep: #8B1F12;
  --yellow: #E8B84F;
  --yellow-warm: #D9A235;
  --gold-deep: #A8780C;
  --accent-glow: 0 1px 1px rgba(61, 40, 23, 0.4), 0 0 14px rgba(168, 120, 12, 0.18);
  --green-mil: #556B2F;
  --green-wa: #25D366;
  --green-wa-hover: #1FB857;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-western: 'Rye', serif;
  --f-grotesk: 'Space Grotesk', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  --max: 1400px;
  --pad-x: clamp(20px, 5vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  color: var(--wood-mid);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(201, 166, 107, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(139, 90, 43, 0.07) 0%, transparent 35%),
    radial-gradient(circle at 30% 60%, rgba(232, 184, 79, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 75% 85%, rgba(139, 90, 43, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 10% 95%, rgba(201, 166, 107, 0.1) 0%, transparent 30%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 3px,
      rgba(139, 90, 43, 0.02) 4px,
      transparent 5px,
      transparent 12px
    );
  background-attachment: fixed;
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 16px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection {
  background: var(--wood-mid);
  color: var(--cream);
}

/* Reveal on scroll */
section, article {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
section.is-visible, article.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nav { opacity: 1; transform: none; }

/* Stagger reveal (no toca transforms — sólo opacity + blur) */
[data-stagger] {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-stagger].is-staggered {
  opacity: 1;
  filter: blur(0);
}

/* Cuando articles cobran is-visible, sus hijos [data-stagger] no deben heredar opacity 0
   porque ya son hijos de elementos con su propia animación. Se manejan independiente. */
article[data-stagger] {
  opacity: 0;
}
article[data-stagger].is-staggered {
  opacity: 1;
}

.kicker {
  font-family: var(--f-grotesk);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wood-light);
}

/* ═══════════════════════════════════════════
   NAV (top fixed-look bar within hero)
   ═══════════════════════════════════════════ */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px var(--pad-x);
  background: transparent;
  color: var(--cream);
}

.nav__stamp {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  background: #E8762D;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.nav__stamp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-grotesk);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  justify-self: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.nav__meta-dot {
  color: var(--yellow);
  font-weight: bold;
}

.nav__meta-est {
  opacity: 0.7;
}

.nav__cta {
  font-family: var(--f-grotesk);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.nav__cta:hover {
  color: var(--yellow);
}

/* ═══════════════════════════════════════════
   HERO — split editorial
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad-x) 60px;
  background-color: #2a1810;
  background-image:
    linear-gradient(
      180deg,
      rgba(38, 20, 8, 0.55) 0%,
      rgba(38, 20, 8, 0.12) 20%,
      rgba(38, 20, 8, 0.00) 44%,
      rgba(38, 20, 8, 0.10) 72%,
      rgba(38, 20, 8, 0.48) 100%
    ),
    url('assets/hero-bg.png');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.hero__grid {
  display: grid;
  place-items: center;
  gap: 0;
  flex: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}

.hero__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 980px;
  opacity: 0;
  animation: heroCenterIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) 2.9s forwards;
}

@keyframes heroCenterIn {
  0%   { opacity: 0; transform: translateY(24px) scale(0.97); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0)   scale(1);     filter: blur(0); }
}

.hero__brand-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  margin-bottom: 18px;
  filter:
    drop-shadow(0 8px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  animation: brandGlow 2.6s ease-in-out 3.4s forwards;
}

@keyframes brandGlow {
  0%, 100% {
    filter:
      drop-shadow(0 8px 28px rgba(0, 0, 0, 0.55))
      drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4))
      drop-shadow(0 0 0 rgba(232, 184, 79, 0));
  }
  45% {
    filter:
      drop-shadow(0 8px 28px rgba(0, 0, 0, 0.55))
      drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4))
      drop-shadow(0 0 36px rgba(232, 184, 79, 0.55));
  }
}

.hero__emblem {
  width: clamp(195px, 23vw, 280px);
  height: auto;
  margin: 0 auto 6px;
  display: block;
  filter:
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 30px rgba(232, 184, 79, 0.18));
  animation: emblemFloat 5.5s ease-in-out 3.6s infinite;
}

@keyframes emblemFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.hero__issue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--f-grotesk);
  font-size: 13px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.hero__issue-line {
  width: 60px;
  height: 1px;
  background: var(--yellow);
}

.hero__lede {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--cream);
  max-width: 380px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero__lede em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}

.hero__brand {
  font-family: var(--f-western);
  font-size: clamp(86px, 12vw, 170px);
  line-height: 0.85;
  color: var(--cream);
  letter-spacing: -3px;
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow:
    4px 6px 0 rgba(0, 0, 0, 0.65),
    0 0 30px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 0, 0, 0.3);
}

.hero__brand-line {
  display: block;
}

.hero__brand-line--shift {
  margin-left: 0.3em;
  color: var(--yellow);
}

.hero__slogan {
  position: relative;
  font-family: var(--f-display);
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 400;
  color: var(--cream);
  text-shadow:
    0 0 4px rgba(20, 10, 4, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.85);
  margin-top: 4px;
}

/* Halo cálido localizado: ayuda a leer el slogan sobre el fondo brillante
   sin oscurecer el resto del hero */
.hero__slogan::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 135%;
  height: 260%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(20, 10, 4, 0.58) 0%,
    rgba(20, 10, 4, 0.28) 45%,
    rgba(20, 10, 4, 0) 72%
  );
  filter: blur(7px);
}

.hero__slogan em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 700;
}

.hero__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 230, 200, 0.2);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: heroBottomIn 1s ease 4.2s forwards;
}

@keyframes heroBottomIn {
  to { opacity: 1; }
}

.hero__bottom-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__bottom-item .kicker {
  color: var(--yellow);
}

.hero__bottom-item span:not(.kicker) {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero__bottom-item .kicker {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-grotesk);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  animation: scrollPulse 2.4s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero__scroll svg {
  width: 16px;
  height: 16px;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ═══════════════════════════════════════════
   HERO SPLASH — intro cinematográfica
   (frase aparece → se queda → desaparece, después entra el hero real)
   ═══════════════════════════════════════════ */

.hero__splash {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad-x);
  pointer-events: none;
  opacity: 0;
  animation: splashSequence 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  max-width: 960px;
}

.hero__splash-text {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.05;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.5px;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.85),
    0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero__splash-text em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}

.hero__splash-orn {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--yellow);
}

.splash-line {
  width: 70px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.7;
}

.splash-star {
  font-size: 18px;
  letter-spacing: 0.3em;
}

@keyframes splashSequence {
  0%   { opacity: 0; transform: scale(1.04); filter: blur(10px); }
  12%  { opacity: 1; transform: scale(1);    filter: blur(0); }
  78%  { opacity: 1; transform: scale(1);    filter: blur(0); }
  100% { opacity: 0; transform: scale(0.92); filter: blur(8px); }
}

/* Respeto a usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .hero__splash { animation: splashFastFade 0.6s ease 0.8s forwards; }
  .hero__center { animation: none; opacity: 1; }
  .hero__brand-img { animation: none; }
  .hero__emblem { animation: none; }
  .hero__bottom { animation: none; opacity: 1; }

  @keyframes splashFastFade {
    to { opacity: 0; }
  }
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS — transiciones entre secciones
   ═══════════════════════════════════════════ */

.section-divider {
  position: relative;
  padding: 32px var(--pad-x);
}

/* Divider Manifesto → Tesoros: línea con sello del viejito */
.section-divider--seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 64px var(--pad-x);
}

.section-divider--seal .divider-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(61, 40, 23, 0.4) 50%,
    rgba(61, 40, 23, 0.6) 100%
  );
}

.section-divider--seal .divider-line:last-of-type {
  background: linear-gradient(
    90deg,
    rgba(61, 40, 23, 0.6) 0%,
    rgba(61, 40, 23, 0.4) 50%,
    transparent 100%
  );
}

.divider-emblem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.divider-emblem-img {
  width: 56px;
  height: 56px;
  opacity: 0.65;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  animation: emblemFloat 5s ease-in-out infinite;
}

.divider-emblem-stars {
  font-family: var(--f-grotesk);
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 6px;
  opacity: 0.7;
}

@keyframes emblemFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}

/* ═══════════════════════════════════════════
   MANIFESTO — quote dramático
   ═══════════════════════════════════════════ */

.manifesto {
  position: relative;
  padding: 200px var(--pad-x);
  color: var(--cream);
  background: transparent;
  overflow: visible;
  /* Override del reveal base: que entre más lento y con más drama */
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fondo madera integrado a la página: full-width, con fade arriba/abajo hacia el cream */
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1f120a;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(15, 8, 3, 0.55) 0px,
      rgba(35, 22, 12, 0.25) 3px,
      rgba(25, 15, 8, 0.6) 7px,
      rgba(45, 28, 16, 0.25) 14px,
      rgba(15, 8, 3, 0.55) 22px,
      rgba(30, 18, 10, 0.4) 28px
    ),
    linear-gradient(180deg, #1a0e06 0%, #2a1810 50%, #1a0e06 100%);
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto__inner.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.manifesto__kicker {
  font-family: var(--f-grotesk);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 48px;
}

.manifesto__quote {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 48px;
  position: relative;
}

.manifesto__quote em {
  font-style: italic;
  color: var(--yellow);
}

.quote-mark {
  font-family: var(--f-display);
  color: var(--yellow);
  text-shadow:
    0 0 4px rgba(20, 10, 4, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.85);
  opacity: 0.8;
  font-size: 0.9em;
  margin: 0 0.05em;
}

.manifesto__sign {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   TESOROS — 3 productos en una sola sección
   ═══════════════════════════════════════════ */

.tesoros {
  position: relative;
  padding: 120px var(--pad-x);
  background: transparent;
  overflow: hidden;
}

.tesoros > *:not(.tesoros__seal):not(.tesoros__doodles) {
  position: relative;
  z-index: 2;
}

/* Sellos decorativos atmosféricos */
.tesoros__seal {
  position: absolute;
  width: 360px;
  height: 360px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
}

.tesoros__seal--tl {
  top: 60px;
  left: -80px;
  transform: rotate(var(--scroll-rot, -15deg)) translateY(var(--parallax-y, 0));
}

.tesoros__seal--br {
  bottom: 80px;
  right: -100px;
  transform: rotate(var(--scroll-rot, 18deg)) translateY(var(--parallax-y, 0));
  opacity: 0.18;
}

/* Doodles dispersos */
.tesoros__doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

.doodle {
  position: absolute;
  opacity: 0.4;
}

.doodle--star {
  color: var(--gold-deep);
  opacity: 0.45;
}

.doodle--rosemary {
  color: var(--green-mil);
  opacity: 0.5;
}

.doodle--asterisk {
  color: var(--yellow-warm);
  opacity: 0.55;
}

.doodle--pepper {
  color: var(--wood-mid);
  opacity: 0.5;
}

.doodle--1 { width: 28px; height: 28px; top: 18%; left: 28%; transform: rotate(-12deg); }
.doodle--2 { width: 70px; height: 70px; top: 12%; right: 18%; transform: rotate(25deg); }
.doodle--3 { width: 60px; height: 80px; top: 55%; left: 6%; transform: rotate(-25deg); }
.doodle--4 { width: 22px; height: 22px; bottom: 28%; right: 32%; transform: rotate(18deg); }
.doodle--5 { width: 36px; height: 36px; top: 38%; right: 8%; transform: rotate(15deg); }
.doodle--6 { width: 60px; height: 60px; bottom: 18%; left: 22%; transform: rotate(-8deg); }

.tesoros__header {
  max-width: var(--max);
  margin: 0 auto 80px;
  text-align: center;
}

.tesoros__header .kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--wood-light);
}

.tesoros__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--wood-mid);
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.tesoros__title em {
  font-style: italic;
  color: var(--gold-deep);
  text-shadow: var(--accent-glow);
}

.tesoros__sub {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: italic;
  color: var(--wood-mid);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto;
}

.tesoros__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.product {
  position: relative;
  background: var(--cream-light);
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(61, 40, 23, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  overflow: hidden;
  z-index: 2;
}

.product:nth-child(1) { transform: rotate(-0.6deg); }
.product:nth-child(3) { transform: rotate(0.6deg); }

.product:nth-child(1):hover { transform: rotate(0) translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }
.product:nth-child(3):hover { transform: rotate(0) translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }

.product:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product--featured {
  background: var(--cream);
  border: 1px solid rgba(192, 57, 43, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-20px) !important;
}

.product--featured:hover {
  transform: translateY(-26px) !important;
}

.product__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product:hover .product__photo img {
  transform: scale(1.06);
}

.product__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cream);
  color: var(--wood-mid);
  padding: 6px 14px;
  font-family: var(--f-grotesk);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product__badge--red {
  background: var(--red);
  color: var(--cream);
}

.product__number {
  font-family: var(--f-grotesk);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 28px 28px 12px;
  font-weight: 500;
}

.product__name {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--wood-mid);
  margin: 0 28px 16px;
  letter-spacing: -1px;
}

.product__name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  text-shadow: var(--accent-glow);
}

.product__desc {
  font-family: var(--f-display);
  font-size: 15px;
  line-height: 1.55;
  color: var(--wood-mid);
  margin: 0 28px 20px;
  font-weight: 400;
}

.product__attrs {
  list-style: none;
  margin: 0 28px 28px;
  border-top: 1px solid rgba(61, 40, 23, 0.15);
}

.product__attrs li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(61, 40, 23, 0.1);
  align-items: baseline;
}

.product__attrs li span {
  font-family: var(--f-grotesk);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wood-light);
}

.product__attrs li strong {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--wood-mid);
}

/* ═══════════════════════════════════════════
   FOR WHO — fichas ilustradas + sello rojo
   ═══════════════════════════════════════════ */

.for-who {
  position: relative;
  padding: 120px var(--pad-x);
  background: transparent;
  overflow: hidden;
  text-align: center;
}

.for-who__big-seal {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 62%;
  left: 50%;
  transform: translate(-50%, calc(-50% + var(--parallax-y, 0))) rotate(var(--scroll-rot, -8deg));
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
  will-change: transform;
}

.for-who__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.for-who__header {
  margin-bottom: 56px;
  margin-top: -20px;
}

.for-who__header .kicker {
  display: block;
  color: var(--wood-mid);
  margin-bottom: 24px;
}

.for-who__statement {
  font-family: var(--f-display);
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--wood-mid);
  letter-spacing: -2px;
}

.for-who__statement em {
  font-style: italic;
  color: var(--gold-deep);
  text-shadow: var(--accent-glow);
}

.for-who__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.who-card {
  position: relative;
  background: var(--cream-light);
  border: 1px solid rgba(61, 40, 23, 0.15);
  padding: 32px 24px 28px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.who-card:nth-child(1) { transform: rotate(-1deg); }
.who-card:nth-child(2) { transform: rotate(0.8deg); }
.who-card:nth-child(3) { transform: rotate(-0.5deg); }
.who-card:nth-child(4) { transform: rotate(1deg); }

.who-card:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.who-card__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--f-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-deep);
  opacity: 0.4;
  line-height: 1;
}

.who-card__illus {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  color: var(--wood-mid);
}

.who-card__illus svg {
  width: 100%;
  height: 100%;
}

.who-card__name {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--wood-mid);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.who-card__desc {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--wood-mid);
  opacity: 0.85;
}

.for-who__cta {
  display: inline-block;
  font-family: var(--f-grotesk);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wood-mid);
  padding: 18px 0 6px;
  border-bottom: 2px solid var(--red);
  transition: color 0.3s;
  font-weight: 500;
}

.for-who__cta:hover {
  color: var(--gold-deep);
}

/* ═══════════════════════════════════════════
   DELIVERY — mapa + info
   ═══════════════════════════════════════════ */

.delivery {
  position: relative;
  padding: 120px var(--pad-x);
  background: transparent;
  overflow: hidden;
}

.delivery__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.delivery__map {
  position: relative;
}

/* Marco tipo "ficha de archivo" / mapa antiguo */
.map-frame {
  position: relative;
  background: var(--cream-light);
  padding: 24px;
  border: 1px solid rgba(61, 40, 23, 0.2);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(245, 230, 200, 0.6);
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
}

.map-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(61, 40, 23, 0.2);
  pointer-events: none;
}

.map-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.map-frame__header {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(61, 40, 23, 0.15);
}

.map-frame__label {
  display: block;
  font-family: var(--f-grotesk);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}

.map-frame__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--wood-mid);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.map-frame__legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(61, 40, 23, 0.15);
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-grotesk);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--wood-mid);
  text-transform: uppercase;
  font-weight: 500;
}

.map-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--wood-mid);
  flex-shrink: 0;
}

.delivery__content {
  position: relative;
}

/* Sello atmosférico en esquina */
.delivery__seal {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  transform: rotate(12deg);
}

.delivery__content > * {
  position: relative;
  z-index: 1;
}

.delivery__kicker {
  font-family: var(--f-grotesk);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 20px;
}

.delivery__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--wood-mid);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.delivery__title em {
  font-style: italic;
  color: var(--gold-deep);
  text-shadow: var(--accent-glow);
}

/* Ornamento decorativo entre título y lede */
.delivery__ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ornament-line {
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}

.ornament-star {
  color: var(--gold-deep);
  font-size: 16px;
}

.delivery__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--wood-mid);
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 460px;
}

.delivery__info {
  margin-bottom: 36px;
}

.delivery__row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(61, 40, 23, 0.25);
}

.delivery__row:first-child {
  border-top: 1px dashed rgba(61, 40, 23, 0.25);
}

.delivery__row-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cream);
  border: 1.5px solid var(--gold-deep);
  color: var(--gold-deep);
  transition: transform 0.3s ease, background 0.3s ease;
}

.delivery__row:hover .delivery__row-icon {
  transform: rotate(-10deg) scale(1.05);
  background: rgba(168, 120, 12, 0.10);
}

.delivery__row-icon svg {
  width: 20px;
  height: 20px;
}

.delivery__row-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.delivery__label {
  font-family: var(--f-grotesk);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wood-light);
}

.delivery__value {
  font-family: var(--f-display);
  font-size: 17px;
  font-style: italic;
  color: var(--wood-mid);
}

.delivery__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-grotesk);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  background: var(--green-wa);
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.35),
    inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(37, 211, 102, 0.45),
    inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.delivery__cta-icon {
  width: 18px;
  height: 18px;
}

.delivery__cta-arrow {
  transition: transform 0.3s ease;
}

.delivery__cta:hover .delivery__cta-arrow {
  transform: translateX(4px);
}

.delivery__note {
  margin-top: 14px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--wood-light);
}

/* ═══════════════════════════════════════════
   SOCIAL LINE — banner papel rasgado
   ═══════════════════════════════════════════ */

.social-wrap {
  position: relative;
  padding: 32px var(--pad-x);
  background: transparent;
  overflow: hidden;
}

.social-line {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 56px 40px;
  text-align: center;
  background-color: #f0dcae;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(139, 90, 43, 0.18) 0%, transparent 14%),
    radial-gradient(circle at 82% 28%, rgba(139, 90, 43, 0.12) 0%, transparent 12%),
    radial-gradient(circle at 25% 78%, rgba(160, 110, 60, 0.15) 0%, transparent 16%),
    radial-gradient(circle at 75% 75%, rgba(139, 90, 43, 0.1) 0%, transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(232, 184, 79, 0.2) 0%, transparent 70%),
    repeating-linear-gradient(
      32deg,
      transparent 0px,
      transparent 30px,
      rgba(139, 90, 43, 0.04) 31px,
      transparent 32px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 22px,
      rgba(160, 110, 60, 0.03) 23px,
      transparent 24px
    ),
    linear-gradient(180deg, #f0dcae 0%, #e8d09a 100%);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.18),
    0 4px 8px rgba(0, 0, 0, 0.12);
  transform: rotate(-0.4deg);
  /* Bordes rasgados arriba y abajo */
  clip-path: polygon(
    0% 5%, 2% 1%, 5% 4%, 8% 0%, 12% 3%, 15% 1%, 18% 4%, 22% 0%,
    25% 3%, 28% 1%, 32% 4%, 35% 0%, 38% 3%, 42% 1%, 45% 4%,
    48% 0%, 52% 3%, 55% 1%, 58% 4%, 62% 0%, 65% 3%, 68% 1%,
    72% 4%, 75% 0%, 78% 3%, 82% 1%, 85% 4%, 88% 0%, 92% 3%,
    95% 1%, 98% 4%, 100% 2%,
    100% 96%, 98% 99%, 95% 96%, 92% 100%, 88% 97%, 85% 99%,
    82% 96%, 78% 100%, 75% 97%, 72% 99%, 68% 96%, 65% 100%,
    62% 97%, 58% 99%, 55% 96%, 52% 100%, 48% 97%, 45% 99%,
    42% 96%, 38% 100%, 35% 97%, 32% 99%, 28% 96%, 25% 100%,
    22% 97%, 18% 99%, 15% 96%, 12% 100%, 8% 97%, 5% 99%, 2% 96%, 0% 98%
  );
}

/* Cintas washi tape decorativas */
.social-line__tape {
  position: absolute;
  width: 110px;
  height: 28px;
  background: linear-gradient(
    180deg,
    rgba(192, 57, 43, 0.55) 0%,
    rgba(192, 57, 43, 0.7) 50%,
    rgba(192, 57, 43, 0.55) 100%
  );
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 4px,
      rgba(255, 255, 255, 0.1) 5px,
      transparent 6px
    );
  z-index: 3;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.social-line__tape--left {
  top: 0px;
  left: 6%;
  transform: rotate(-8deg) translateY(-12px);
}

.social-line__tape--right {
  top: 0px;
  right: 6%;
  transform: rotate(7deg) translateY(-12px);
}

.social-line__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.social-line__inner .kicker {
  display: block;
  margin-bottom: 20px;
}

.social-line__text {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--wood-mid);
  font-weight: 400;
  margin-bottom: 32px;
}

.social-line__text em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
  text-shadow: var(--accent-glow);
}

.social-line__icons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px dashed var(--wood-mid);
  border-radius: 50%;
  color: var(--wood-mid);
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.social-icon:hover {
  opacity: 0.7;
  transform: translateY(-2px) rotate(3deg);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */

.contact {
  position: relative;
  padding: 120px var(--pad-x);
  background: transparent;
  overflow: hidden;
}

/* Marquee — cinta roja tipo banner vintage */
.contact__marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  margin: 0 calc(var(--pad-x) * -1) 64px;
  background-color: var(--red);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
  border-top: 2px solid rgba(245, 230, 200, 0.25);
  border-bottom: 2px solid rgba(245, 230, 200, 0.25);
  transform: rotate(-0.8deg);
  box-shadow:
    0 12px 30px rgba(192, 57, 43, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.marquee-sep {
  color: var(--yellow);
  font-size: 22px;
  font-weight: bold;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Contenido de contacto sobre fondo unificado */
.contact__grid {
  position: relative;
  padding: 20px 0 0;
  color: var(--wood-mid);
  width: 100%;
  text-align: center;
}

/* Tarjeta tipo papelería antigua */
.contact__card {
  position: relative;
  background: var(--cream-light);
  border: 1px solid rgba(61, 40, 23, 0.18);
  padding: 56px 56px 48px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(245, 230, 200, 0.6);
  transform: rotate(-0.4deg);
}

/* Doble borde interno tipo papelería */
.contact__card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(61, 40, 23, 0.15);
  pointer-events: none;
}

/* Esquinas decorativas */
.contact__card::after {
  content: '★';
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  color: var(--gold-deep);
  opacity: 0.5;
}

/* Sello pequeño en esquina superior derecha */
.contact__card-seal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  transform: rotate(8deg);
}

.contact__header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  text-align: center;
}

.contact__header .kicker {
  display: block;
  color: var(--wood-light);
  margin-bottom: 16px;
}

.contact__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--wood-mid);
  letter-spacing: -1.5px;
}

.contact__title em {
  font-style: italic;
  color: var(--gold-deep);
  text-shadow: var(--accent-glow);
}

/* Fields como ficha de papelería */
.contact__fields {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto 36px;
  max-width: 480px;
}

.contact__field {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(61, 40, 23, 0.25);
}

.contact__field:last-child {
  border-bottom: none;
}

.contact__field--whatsapp {
  background: rgba(37, 211, 102, 0.06);
  margin: 0 -16px;
  padding: 16px;
  border-radius: 4px;
  border-bottom: none;
  border: 1px solid rgba(37, 211, 102, 0.25);
  margin-top: 8px;
}

.contact__field-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cream);
  border: 1.5px solid var(--gold-deep);
  color: var(--gold-deep);
}

.contact__field-icon svg {
  width: 18px;
  height: 18px;
}

.contact__field-icon--whatsapp {
  background: var(--green-wa);
  border-color: var(--green-wa);
  color: white;
}

.contact__field-content {
  flex: 1;
  text-align: left;
}

.contact__field-label {
  display: block;
  font-family: var(--f-grotesk);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 4px;
}

.contact__field p {
  font-family: var(--f-display);
  font-size: 16px;
  font-style: italic;
  color: var(--wood-mid);
  line-height: 1.5;
}

.contact__field-phone {
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  letter-spacing: 0.5px;
  color: var(--wood-mid) !important;
}

/* CTA WhatsApp final */
.contact__cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: var(--green-wa);
  color: white;
  font-family: var(--f-grotesk);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow:
    0 6px 20px rgba(37, 211, 102, 0.35),
    inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.45),
    inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.contact__cta svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════
   FOOTER editorial
   ═══════════════════════════════════════════ */

.footer {
  background: var(--wood-dark);
  color: var(--cream);
  padding: 32px var(--pad-x);
  border-top: 1px solid var(--yellow);
}

.footer__line {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__brand-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

.footer__brand-sub {
  font-family: var(--f-grotesk);
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.6;
  text-transform: uppercase;
}

.footer__center {
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
}

.footer__credit {
  text-align: right;
  font-family: var(--f-grotesk);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer__credit a {
  color: var(--yellow);
  border-bottom: 1px dashed var(--yellow);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOTANTE
   ═══════════════════════════════════════════ */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.3s ease;
}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav__meta { display: none; }

  .hero { padding-top: 120px; }
  .hero__grid { gap: 48px; }
  .hero__brand-img { max-width: 580px; }
  .hero__bottom { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hero__scroll { display: none; }

  .tesoros { padding: 100px var(--pad-x); }
  .tesoros__grid { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
  .product--featured { transform: none; }
  .product--featured:hover { transform: translateY(-6px); }

  .delivery__grid { grid-template-columns: 1fr; gap: 60px; }

  .contact__card { padding: 40px 28px 32px; }
  .contact__card-seal { width: 60px; height: 60px; top: 16px; right: 16px; }
  .marquee-item { font-size: 18px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }

  .nav { padding: 16px var(--pad-x); }
  .nav__cta { font-size: 10px; }

  .hero {
    padding: 100px var(--pad-x) 40px;
    background-image:
      linear-gradient(
        180deg,
        rgba(38, 20, 8, 0.45) 0%,
        rgba(38, 20, 8, 0.10) 18%,
        rgba(38, 20, 8, 0.00) 45%,
        rgba(38, 20, 8, 0.08) 75%,
        rgba(38, 20, 8, 0.42) 100%
      ),
      url('assets/hero-bg-movil.png');
  }
  .hero__grid { padding: 20px 0; gap: 32px; }
  .hero__brand-img { max-width: 88%; margin-bottom: 22px; }
  .hero__issue { font-size: 11px; letter-spacing: 2.5px; gap: 12px; margin-top: 24px; }
  .hero__issue-line { width: 32px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 16px; }

  .manifesto { padding: 100px var(--pad-x); }
  .manifesto__quote { font-size: clamp(28px, 9vw, 48px); }

  .tesoros { padding: 70px var(--pad-x); }
  .tesoros__header { margin-bottom: 40px; }
  .tesoros__grid { gap: 16px; max-width: 100%; }

  /* Mini-cards compactas: foto a la izquierda, texto a la derecha */
  .product {
    display: grid;
    grid-template-columns: 112px 1fr;
    column-gap: 0;
    align-items: stretch;
    transform: none !important;
    overflow: hidden;
  }
  .product__photo {
    grid-column: 1;
    grid-row: 1 / 4;
    aspect-ratio: auto;
    height: 100%;
    min-height: 140px;
  }
  .product__number { grid-column: 2; grid-row: 1; margin: 16px 16px 4px; }
  .product__name {
    grid-column: 2; grid-row: 2;
    margin: 0 16px 7px;
    font-size: 21px;
    letter-spacing: -0.5px;
  }
  .product__desc {
    grid-column: 2; grid-row: 3;
    margin: 0 16px 16px;
    font-size: 13.5px;
    line-height: 1.45;
  }
  .product__attrs { display: none; }
  .product__badge {
    top: 8px; left: 8px;
    padding: 3px 8px;
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .for-who, .delivery, .contact { padding: 80px var(--pad-x); }
  .for-who__cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .for-who__big-seal { width: 400px; height: 400px; }
  .who-card { padding: 24px 18px 20px; }
  .who-card__illus { width: 60px; height: 60px; margin-bottom: 18px; }

  .contact__field { padding: 12px 0; }
  .contact__field-phone { font-size: 18px !important; }

  .footer__line { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer__brand { align-items: center; }
  .footer__credit { text-align: center; }

  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media print {
  .wa-float, .hero__scroll { display: none; }
  section, article { opacity: 1; transform: none; }
}
