/* ================================================================
   DESIGN TOKENS — Aroma Company
   ================================================================ */
:root {
  /* Palette — botánico cálido (token names preserved) */
  --ink:          #1c1713;   /* warm espresso near-black */
  --ink-soft:     #2c241d;
  --bone:         #f0e7d6;   /* warm paper — menos claro */
  --cream:        #e8dcc8;
  --champagne:    #dccdb2;
  --sand:         #d6cab0;
  --gold:         #bd9a68;   /* antique gold */
  --gold-deep:    #7d6539;   /* oscurecido p/ contraste AA como texto sobre fondos claros */
  --gold-bright:  #d9b985;   /* luminous sheen accent */
  --taupe:        #6f6253;   /* oscurecido p/ legibilidad como texto */
  --muted:        #585049;   /* oscurecido p/ contraste AA */
  --green:        #44563f;   /* oliva botánico — acento */
  --green-deep:   #36452f;   /* secciones oscuras → verde */
  --terracotta:   #b5563b;   /* rojo terracota — acento cálido */
  --terracotta-deep: #9a4730;
  --hair:         rgba(28,23,19,.09);
  --hair-strong:  rgba(28,23,19,.2);

  /* Atmosphere (new) */
  --paper:        radial-gradient(125% 110% at 12% -8%, #f4ecdc 0%, var(--bone) 42%, var(--cream) 100%);
  --mesh-gold:    radial-gradient(circle at 78% 28%, rgba(189,154,104,.30), transparent 56%),
                  radial-gradient(circle at 18% 82%, rgba(140,124,105,.20), transparent 52%);
  --sh-soft:      0 2px 8px rgba(28,23,19,.05), 0 18px 44px -22px rgba(28,23,19,.28);
  --sh-lift:      0 30px 70px -30px rgba(28,23,19,.42);
  --sh-panel:     0 20px 60px -28px rgba(28,23,19,.38);
  --sh-pop:       0 8px 30px -8px rgba(28,23,19,.30);

  /* Radii — escala editorial (esquina viva, radios chicos) */
  --r-xs:   2px;
  --r-sm:   3px;
  --r-md:   4px;
  --r-lg:   6px;   /* tope para cards/modales grandes */
  --r-pill: 100px; /* solo chips/badges/botones-pastilla intencionales */

  /* Typography */
  --serif:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:   'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max:    1360px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease:   cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .25s var(--ease);
  --t-med:  .5s var(--ease);
  --t-slow: .9s var(--ease);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  background: var(--paper) fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* Grain / paper texture overlay — atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Fraunces optical sizing for all serif display type */
.display, .hero-title, h1, h2, h3,
[class*="-title"], [class*="-name"], [class*="-num"] {
  font-optical-sizing: auto;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--taupe); }

/* ================================================================
   REUSABLE UTILITIES
   ================================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 1.05;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--taupe);
}
.lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: .005em;
}
.hairline { height: 1px; background: var(--hair); width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 30px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-soft);
  color: var(--bone);
  box-shadow: var(--sh-lift);
}
/* Gold sheen sweep on primary hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(217,185,133,.5), transparent);
  transform: skewX(-18deg);
  transition: left .7s var(--ease-out);
}
.btn-primary:hover::after { left: 160%; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bone);
}
.btn-disabled,
.btn:disabled {
  background: transparent !important;
  color: var(--muted, #999) !important;
  border-color: var(--hair, #ddd) !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  pointer-events: none;
}
.btn-disabled:hover,
.btn:disabled:hover {
  background: transparent !important;
  color: var(--muted, #999) !important;
  border-color: var(--hair, #ddd) !important;
}
.btn-light {
  background: var(--bone);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--gold);
}
.btn-arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .btn-arrow { transform: translateX(4px); }
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce {
  background: var(--ink);
  color: rgba(250,247,242,.7);
  padding: 11px var(--gutter);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.announce-dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 14px;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--hair);
  transition: padding var(--t-fast), background var(--t-fast);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }
.nav-brand {
  display: flex;
  align-items: center;
  line-height: 1;
  transition: opacity var(--t-fast);
}
.nav-brand:hover { opacity: 0.7; }
.nav-logo {
  height: 36px;
  width: auto;
  display: block;
  transition: height var(--t-fast);
}
.nav.scrolled .nav-logo { height: 30px; }
.nav-links {
  display: flex;
  gap: 38px;
  justify-content: center;
  align-items: center;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(26,26,26,.72);
  padding: 4px 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width var(--t-fast), left var(--t-fast);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.nav-icon-btn {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: color var(--t-fast);
  position: relative;
}
.nav-icon-btn:hover { color: var(--gold-deep); }
.nav-icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.3; }
.cart-dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.cart-dot.on { opacity: 1; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 101;
}
.burger span {
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform var(--t-fast), opacity var(--t-fast);
  display: block;
}
.burger.on span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO — Cinematic split
   ================================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 125px);
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  background:
    radial-gradient(115% 120% at 6% 0%, #f4ecdc, transparent 60%),
    var(--cream);
  overflow: hidden;
}
/* Oversized decorative serif glyph bleeding behind the headline */
.hero::before {
  content: '';
  position: absolute;
  left: -2%;
  bottom: -14%;
  width: 46%;
  height: 70%;
  background: radial-gradient(circle at 40% 50%, rgba(189,154,104,.16), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  padding: clamp(60px, 10vh, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 7.6vw, 118px);
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  display: block;
  background: linear-gradient(102deg, var(--gold-deep), var(--gold-bright) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: .04em;
}
.hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  max-width: 520px;
}
.hero-meta-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1;
}
.hero-meta-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 6px;
}

/* Hero entrance — staggered reveal on load */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.hero-content > * {
  opacity: 0;
  animation: hero-rise .95s var(--ease-out) forwards;
}
.hero-content > .hero-eyebrow { animation-delay: .05s; }
.hero-content > .hero-title   { animation-delay: .16s; }
.hero-content > .hero-body    { animation-delay: .30s; }
.hero-content > .hero-ctas    { animation-delay: .42s; }
.hero-content > .hero-meta    { animation-delay: .54s; }
.hero-visual { opacity: 0; animation: hero-rise 1.2s var(--ease-out) .35s forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .hero-visual { animation: none; opacity: 1; }
}

.hero-visual {
  position: relative;
  background: var(--champagne);
  overflow: hidden;
}
.hero-carousel { overflow: hidden; }
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-slide.on { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(200,164,126,.28), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(138,123,106,.18), transparent 50%);
}
.hero-slide img {
  position: relative;
  z-index: 2;
  max-width: 70%;
  max-height: 65%;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(26,26,26,.22));
  animation: hero-float 6s var(--ease) infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-watermark {
  position: absolute;
  right: -30px;
  bottom: 4%;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(140px, 22vw, 320px);
  line-height: .8;
  color: rgba(26,26,26,.07);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transition: opacity .5s var(--ease);
}

.hero-slide-tag {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 3;
  background: rgba(26,26,26,.92);
  backdrop-filter: blur(10px);
  color: var(--bone);
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
  border-left: 2px solid var(--gold);
}
.hero-slide-label {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-slide-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
}

.hero-slide-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-slide-spec {
  background: rgba(250,247,242,.85);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: .02em;
  font-family: var(--serif);
  font-style: italic;
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(26,26,26,.7);
  backdrop-filter: blur(10px);
  border-radius: 40px;
}
.hero-dot {
  width: 24px;
  height: 3px;
  background: rgba(250,247,242,.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .4s var(--ease);
}
.hero-dot:hover { background: rgba(250,247,242,.6); }
.hero-dot.on {
  background: var(--gold);
  width: 40px;
}

/* ================================================================
   MARQUEE STRIP — scrolling sensory words
   ================================================================ */
.marquee {
  background: var(--ink);
  color: var(--bone);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll-x 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .01em;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee-item::after {
  content: '✦';
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  color: var(--gold);
  transform: translateY(-2px);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   SECTION BASE
   ================================================================ */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.section-dark {
  background: var(--green-deep);
  color: var(--bone);
}
.section-dark .display { color: var(--bone); }
.section-dark .lead { color: rgba(250,247,242,.65); }
.section-dark .eyebrow { color: var(--gold); }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.section-header-left { max-width: 560px; }
.section-header-right { max-width: 440px; }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -.028em;
  margin-top: 22px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(102deg, var(--gold-deep), var(--gold-bright) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-dark .section-title em {
  background: linear-gradient(102deg, var(--gold), var(--gold-bright) 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================================================
   SCIENCE / MARKETING OLFATIVO — datos premium
   ================================================================ */
.science {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  overflow: hidden;
}
.science::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(200,164,126,.06), transparent 70%);
  pointer-events: none;
}
.science-intro {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.science-intro .eyebrow { color: var(--gold); }
.science-intro .display {
  color: var(--bone);
  font-size: clamp(36px, 4.8vw, 60px);
  margin-top: 20px;
  margin-bottom: 28px;
}
.science-intro .display em { color: var(--gold); }
.science-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250,247,242,.7);
  font-weight: 300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
  padding: 0 20px;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.stat-num-sym {
  font-size: 0.5em;
  vertical-align: super;
  color: rgba(200,164,126,.7);
}
.stat-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(250,247,242,.65);
  font-weight: 300;
  max-width: 200px;
  margin: 0 auto;
}
.stat-source {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(250,247,242,.4);
  margin-top: 10px;
  display: block;
}

/* ================================================================
   TECNOLOGÍA — micropartículas vs aerosol
   ================================================================ */
.tech {
  background: var(--cream);
  padding: clamp(80px, 12vh, 140px) 0;
}
.tech-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.tech-card {
  background: var(--bone);
  padding: 48px 40px;
  position: relative;
}
.tech-card.ours {
  border-top: 3px solid var(--gold);
}
.tech-card.vs {
  background: transparent;
  border: 1px solid var(--hair-strong);
}
.tech-card-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.tech-card.vs .tech-card-tag { color: var(--muted); }
.tech-card-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.tech-card-sub {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 32px;
  font-weight: 500;
}
.tech-features {
  list-style: none;
}
.tech-features li {
  padding: 14px 0;
  border-top: 1px solid var(--hair);
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.tech-features li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.tech-card.vs .tech-features li {
  color: var(--muted);
}
.tech-card.vs .tech-features li::before {
  background: transparent;
  border: 1px solid var(--hair-strong);
}

/* ================================================================
   CALCULADORA DE COBERTURA
   ================================================================ */
.calc {
  background: var(--bone);
  padding: clamp(80px, 12vh, 140px) 0;
}
.calc-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--cream);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
}
.calc-header { text-align: center; margin-bottom: 44px; }
.calc-header .eyebrow { display: inline-block; margin-bottom: 14px; }
.calc-header h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.calc-header p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.calc-slider-wrap {
  margin: 48px 0 32px;
}
.calc-slider-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.calc-slider-label {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.calc-slider-value {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.calc-slider-unit {
  font-size: 18px;
  color: var(--gold-deep);
  font-style: italic;
  margin-left: 4px;
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--hair-strong);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 3px solid var(--bone);
  box-shadow: 0 0 0 1px var(--ink);
  transition: transform var(--t-fast);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 3px solid var(--bone);
  box-shadow: 0 0 0 1px var(--ink);
}

.calc-result {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.calc-result-icon {
  width: 260px;
  height: 260px;
  background: linear-gradient(160deg, var(--bone) 0%, var(--champagne) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  transition: transform var(--t-med);
}
.calc-result-icon::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--hair-strong);
  pointer-events: none;
}
.calc-result-icon::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 14px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(26,26,26,.12), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}
.calc-result-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform var(--t-med);
  filter: drop-shadow(0 8px 18px rgba(26,26,26,.08));
}
.calc-result-icon:hover img {
  transform: translateY(-6px) scale(1.04);
}
.calc-result-text .eyebrow { color: var(--gold-deep); margin-bottom: 10px; }
.calc-result-text h4 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
  line-height: 1;
}
.calc-result-text p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.calc-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ================================================================
   SERVICES — editorial cards with illustrated environments
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
  box-shadow: 0 1px 0 var(--hair);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lift); }

.service-illus {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-illus svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform var(--t-slow);
}
.service-card:hover .service-illus svg { transform: scale(1.05); }

.service-content {
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.service-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
}
.service-features {
  list-style: none;
  margin-bottom: 28px;
}
.service-features li {
  font-size: 12.5px;
  color: var(--muted);
  padding: 10px 0;
  border-top: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ================================================================
   EQUIPMENT SHOWCASE — editorial gallery
   ================================================================ */
.equipment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.equip-card {
  position: relative;
  transition: transform var(--t-med);
}
.equip-card:hover { transform: translateY(-8px); }
.equip-visual {
  background:
    radial-gradient(circle at 50% 36%, var(--sand) 0%, #c2b08e 82%);
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  padding: 12%;
  transition: box-shadow var(--t-med);
}
.equip-card:hover .equip-visual { box-shadow: var(--sh-lift); }
.equip-visual img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
  filter: drop-shadow(0 24px 28px rgba(28,23,19,.28));
}
.equip-card:hover .equip-visual img { transform: scale(1.04); }
/* A3000 PNG tiene margen transparente — compensar para igualar tamaño visual. */
.kit-model-visual img[src*="a3000("],
.kit-model img[src*="a3000("] { transform: scale(1.75); transform-origin: center center; }
/* Card de equipos: scale + nudge para centrar visualmente entre badge/fav y switcher */
.equip-visual img[src*="a3000("] {
  transform: scale(1.78) translateY(-4%);
  transform-origin: center center;
  object-position: center center;
}
.equip-card:hover .equip-visual img[src*="a3000("] { transform: scale(1.83) translateY(-4%); }
/* Hero: la animación hero-float usa transform, así que en vez de scale
   agrandamos por max-width/max-height y forzamos centrado. */
.hero-slide img[src*="a3000("] {
  margin: 0 auto;
  display: block;
  object-position: center center;
  max-width: 108% !important;
  max-height: 105% !important;
}
.equip-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
}
.equip-colors {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  background: rgba(240,231,214,.78);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
}
.color-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(26,26,26,.25);
  cursor: pointer;
  transition: transform var(--t-fast);
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  vertical-align: middle;
  font: inherit;
}
.color-dot:hover { transform: scale(1.15); }
.color-dot.on { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ink); }
.color-dot.white { background: #f5f5f0; }
.color-dot.black { background: #1a1a1a; }
.color-dot.silver { background: linear-gradient(135deg,#b8b8b8 30%,#e8e8e8 70%); }
.color-dot.dot-sin-stock { opacity: .25; }   /* color sin stock en el catálogo */

.equip-kicker {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 10px;
  font-weight: 500;
}
.equip-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -.01em;
  line-height: 1;
}
.equip-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 22px;
  min-height: 66px;
}
.equip-cta {
  display: flex;
  gap: 8px;
}
.equip-cta .btn { padding: 12px 18px; font-size: 9.5px; flex: 1; justify-content: center; letter-spacing: .22em; }

/* ================================================================
   FRAGRANCES — biblioteca olfativa (color gallery)
   ================================================================ */
.frag-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250,247,242,.12);
}
.frag-filter {
  padding: 10px 18px;
  border: 1px solid rgba(250,247,242,.2);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,247,242,.7);
  transition: var(--t-fast);
  font-weight: 500;
}
.frag-filter:hover { border-color: var(--gold); color: var(--gold); }
.frag-filter.on { border-color: var(--gold); background: var(--gold); color: var(--ink); }

.frag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.frag-card {
  position: relative;
  cursor: pointer;
  transition: transform var(--t-med);
  display: flex;
  flex-direction: column;
}
.frag-card:hover { transform: translateY(-4px); }

.frag-visual {
  aspect-ratio: 3 / 4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--frag-bg, #f0ece2);
  padding: 10%;
}
.frag-visual img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.2));
}
.frag-card:hover .frag-visual img {
  transform: translateY(-8px) scale(1.05);
}

.frag-card-num {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(26,26,26,.4);
}
.frag-info {
  padding: 22px 4px 8px;
  text-align: left;
}
.frag-family {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(250,247,242,.55);
  margin-bottom: 8px;
  font-weight: 500;
}
.frag-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -.005em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.frag-ml {
  font-size: 11.5px;
  color: rgba(250,247,242,.45);
  font-family: var(--serif);
  font-style: italic;
}

/* Olfactive family symbol — esquina superior derecha de la card */
.frag-card-symbol {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  color: rgba(250,247,242,.5);
  letter-spacing: 0;
  font-feature-settings: "ss01";
  text-shadow: 0 1px 8px rgba(0,0,0,.15);
  z-index: 2;
  transition: color var(--t-fast), transform var(--t-fast);
  pointer-events: none;
}
.frag-card:hover .frag-card-symbol {
  color: var(--gold);
  transform: rotate(15deg) scale(1.1);
}

/* Intensity meter — barras 1-5 */
.frag-intensity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(250,247,242,.08);
}
.frag-intensity-lbl {
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(250,247,242,.4);
  font-weight: 500;
}
.frag-intensity-bars {
  display: inline-flex;
  gap: 4px;
  margin-left: auto;
}
.frag-intensity-bars i {
  display: block;
  width: 14px;
  height: 3px;
  background: rgba(250,247,242,.12);
  border-radius: 1px;
  transition: background var(--t-fast);
}
.frag-intensity-bars i.on {
  background: var(--gold);
}
.frag-card:hover .frag-intensity-bars i.on {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(200,164,126,.4);
}

/* Stagger reveal — usa --i index */
.frag-grid .frag-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fragReveal .7s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 60ms);
}
@keyframes fragReveal {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .frag-grid .frag-card { animation: none; opacity: 1; transform: none; }
}

/* Filter chips — micro símbolo de familia */
.frag-filter-symbol {
  display: inline-block;
  margin-right: 8px;
  font-size: 13px;
  vertical-align: middle;
  opacity: .7;
  transition: opacity var(--t-fast);
}
.frag-filter.on .frag-filter-symbol,
.frag-filter:hover .frag-filter-symbol {
  opacity: 1;
}

/* ================================================================
   AEROSOLS — dark gallery with pastel cards
   ================================================================ */
.spray-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.spray-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--t-med);
}
.spray-card:hover { transform: translateY(-4px); }
.spray-visual {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--spray-bg, #e4ede0);
  overflow: hidden;
  position: relative;
  padding: 8%;
}
.spray-visual img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.2));
}
.spray-card:hover .spray-visual img { transform: translateY(-6px) scale(1.05); }
.spray-info {
  padding: 22px 4px 4px;
  text-align: center;
}
.spray-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -.005em;
  margin-bottom: 4px;
}
.spray-ml {
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(250,247,242,.5);
  font-family: var(--serif);
  font-style: italic;
}

/* ================================================================
   TEXTILES — línea de perfumería textil (cards propias, sección dark)
   Visual cálido sobre verde profundo; con foto o monograma de respaldo.
   ================================================================ */
.textil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
/* Estado vacío de la línea textil (cuando el catálogo no trae textiles).
   Va sobre fondo oscuro (.section-dark), así que el texto usa tonos claros. */
.textil-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 24px;
  border: 1px solid rgba(200, 164, 126, 0.25);
  border-radius: var(--r-lg);
  background: rgba(250, 247, 242, 0.03);
}
.textil-empty-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.textil-empty-title { color: var(--bone); font-size: 28px; margin: 0 0 10px; }
.textil-empty-sub {
  color: rgba(250, 247, 242, 0.65);
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.textil-card {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--t-med);
}
.textil-card:hover { transform: translateY(-6px); }

.textil-visual {
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: var(--textil-bg, linear-gradient(150deg, #efe7d7, #ddccb0));
  box-shadow: 0 20px 44px -24px rgba(28,23,19,.55), inset 0 0 0 1px rgba(255,255,255,.16);
}
/* Brillo cálido sutil arriba — da profundidad sin foto */
.textil-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 85% at 50% 6%, rgba(255,255,255,.34), transparent 56%);
  pointer-events: none;
}
.textil-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 78%;
  max-width: 82%;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.28));
  transition: transform var(--t-slow);
}
.textil-card:hover .textil-visual img { transform: translateY(-8px) scale(1.05); }

/* Índice decorativo en cursiva (N° de la línea) */
.textil-index {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(28,23,19,.4);
  letter-spacing: .02em;
}

/* Monograma de respaldo cuando el producto no tiene foto */
.textil-monogram {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.textil-initial {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 7vw, 96px);
  line-height: 1;
  background: linear-gradient(125deg, var(--gold-deep), var(--gold-bright) 58%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 18px rgba(154,124,77,.3));
}
.textil-sprig {
  position: absolute;
  bottom: 12%;
  width: 30%;
  max-width: 78px;
  height: auto;
  color: rgba(154,124,77,.34);
  transition: color var(--t-med), transform var(--t-med);
}
.textil-card:hover .textil-sprig {
  color: rgba(154,124,77,.55);
  transform: translateY(-4px);
}

.textil-info {
  padding: 20px 4px 6px;
  text-align: left;
}
.textil-eyebrow {
  display: block;
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
  font-weight: 500;
}
.textil-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--bone);
  line-height: 1.12;
  letter-spacing: -.005em;
  margin-bottom: 6px;
}
.textil-note {
  display: block;
  font-size: 12px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(240,231,214,.5);
}

/* ================================================================
   COMODATO BLOCK — protagonista
   ================================================================ */
.comodato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 720px;
}
.comodato-left {
  background: var(--cream);
  padding: clamp(60px, 10vh, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.comodato-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bone);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  align-self: flex-start;
}
.comodato-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
/* CTA de WhatsApp resaltado cuando el pedido requiere contacto (ALTO-F4):
   reemplaza al popup automático que el navegador bloqueaba. */
.wa-cta-pulse { animation: waCta 1.3s var(--ease) infinite; }
@keyframes waCta {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}
.comodato-right {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 10vh, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.comodato-right::before {
  content: 'Comodato';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 300;
  color: rgba(250,247,242,.03);
  letter-spacing: -.04em;
  pointer-events: none;
}
.comodato-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  color: var(--ink);
}
.comodato-title em { font-style: italic; color: var(--taupe); }
.comodato-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 460px;
}

/* Trial highlight card */
.comodato-trial {
  background: var(--bone);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 36px;
  max-width: 460px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.comodato-trial-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--ink);
  line-height: .9;
  letter-spacing: -.03em;
}
.comodato-trial-text strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: .01em;
}
.comodato-trial-text span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  display: block;
}

.comodato-sectors {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  max-width: 460px;
}
.comodato-sector {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--hair-strong);
  font-weight: 500;
}

.comodato-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.comodato-includes {
  position: relative;
  z-index: 2;
  max-width: 440px;
}
.comodato-includes-title {
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  font-weight: 500;
}
.comodato-list { list-style: none; }
.comodato-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(250,247,242,.1);
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 20px;
}
.comodato-list li:last-child { border-bottom: none; }
.comodato-list-num {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  padding-top: 2px;
}
.comodato-list-content strong {
  display: block;
  font-weight: 500;
  color: var(--bone);
  font-size: 15px;
  margin-bottom: 4px;
}
.comodato-list-content p {
  font-size: 13px;
  color: rgba(250,247,242,.6);
  line-height: 1.6;
}

/* ================================================================
   PROCESS — how it works
   ================================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 20px;
}
.process::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--hair);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-num {
  width: 76px;
  height: 76px;
  background: var(--bone);
  border: 1px solid var(--hair-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  transition: var(--t-med);
}
.process-step:hover .process-num {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.process-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.process-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================================
   SOBRE NOSOTROS — bloque dentro de la ruta Servicios
   ================================================================ */
.about-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--hair);
}
.about-block-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-top: 12px;
  color: var(--ink);
}
.about-block-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.about-block-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.about-block-body p strong { color: var(--ink); font-weight: 600; }
.about-block-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 860px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
  }
  .about-block-title { font-size: 26px; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  background: var(--cream);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.testimonial {
  background: var(--bone);
  padding: 48px 44px;
  border-top: 2px solid var(--gold);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -.005em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-deep);
}
.testimonial-meta strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-meta span {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ================================================================
   CONTACT / FORM
   ================================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .display {
  font-size: clamp(36px, 4.5vw, 58px);
  margin-top: 20px;
  margin-bottom: 40px;
}
.contact-methods { margin-top: 48px; }
.contact-method {
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: padding var(--t-fast);
}
.contact-method:hover { padding-left: 6px; }
.contact-method-label {
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.contact-method-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}

.form {
  background: var(--cream);
  padding: 56px 48px;
}
.form-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair-strong);
  font-family: var(--sans);
  transition: border-color var(--t-fast);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--ink); }
.form-textarea {
  resize: vertical;
  min-height: 90px;
  padding: 12px 0;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5l5 5 5-5' stroke='%231a1a1a' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.form-submit {
  margin-top: 16px;
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--bone);
  border: none;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t-fast);
}
.form-submit:hover { background: var(--gold-deep); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(189,154,104,.1), transparent 60%),
    var(--ink);
  color: var(--bone);
  padding: 100px 0 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(250,247,242,.1);
  margin-bottom: 40px;
}
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-tag {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(250,247,242,.55);
  max-width: 300px;
}
.footer-col-title {
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 13.5px;
  color: rgba(250,247,242,.65);
  padding: 6px 0;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,.4);
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(250,247,242,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,.7);
  transition: var(--t-fast);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,164,126,.08);
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  transition: transform var(--t-fast);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 26px; height: 26px; fill: currentColor; }

/* ================================================================
   MODAL — product detail (perfumería premium style)
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,.82);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity var(--t-med);
}
.modal-overlay.on { display: flex; opacity: 1; }
.modal {
  background: var(--bone);
  max-width: 1120px;
  width: 100%;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--t-med);
}
.modal-overlay.on .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  background: var(--bone);
  border: 1px solid var(--hair-strong);
  font-size: 16px;
  color: var(--ink);
  z-index: 10;
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal-close:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.modal-visual {
  background: var(--champagne);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.modal-visual-bg {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(140px, 18vw, 220px);
  color: rgba(26,26,26,.06);
  letter-spacing: -.04em;
  line-height: .9;
  z-index: 0;
  white-space: nowrap;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}
.modal-visual img {
  max-height: 440px;
  max-width: 100%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 30px 40px rgba(26,26,26,.3));
  position: relative;
}

.modal-info {
  padding: 48px 48px 40px;
  overflow-y: auto;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.modal-info::-webkit-scrollbar { width: 4px; }
.modal-info::-webkit-scrollbar-track { background: transparent; }
.modal-info::-webkit-scrollbar-thumb { background: var(--hair-strong); }

.modal-eyebrow {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.modal-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.modal-family {
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--taupe);
  font-style: italic;
  font-family: var(--serif);
}
.modal-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gold-deep);
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  font-weight: 400;
}
.modal-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
  margin: 26px 0 0;
  font-weight: 300;
}

/* Character tags */
.modal-character {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.modal-char-chip {
  font-size: 11px;
  letter-spacing: .08em;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  padding: 5px 0;
  border-bottom: 1px solid var(--gold);
}

/* Olfactory pyramid */
.modal-notes {
  margin-top: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.modal-notes-title {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 22px;
  font-weight: 500;
}
.modal-note-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
}
.modal-note-row:last-child { border-bottom: none; padding-bottom: 0; }
.modal-note-label {
  color: var(--gold-deep);
  font-style: italic;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .01em;
}
.modal-note-val {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 400;
}

/* Uses */
.modal-uses-section {
  margin-top: 28px;
}
.modal-uses-title {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
  font-weight: 500;
}
.modal-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.modal-use {
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--hair-strong);
  font-weight: 400;
}

/* ─── Pirámide olfativa visual (triángulo) ─────────────────────── */
.modal-pyramid {
  position: relative;
  padding: 12px 0 4px;
}
.modal-pyramid-tier {
  position: relative;
  padding: 16px 0 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: baseline;
  border-bottom: 1px solid var(--hair);
}
.modal-pyramid-tier:last-child { border-bottom: none; }
.modal-pyramid-tier::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
}
.modal-pyramid-tier.tier-0::before { opacity: .35; }
.modal-pyramid-tier.tier-1::before { opacity: .65; }
.modal-pyramid-tier.tier-2::before { opacity: 1; }
.modal-pyramid-tier-label {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-deep);
  letter-spacing: .01em;
  padding-left: 22px;
}
.modal-pyramid-tier-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--gold-deep);
  transform: translateY(-50%);
}
.modal-pyramid-tier.tier-0 .modal-pyramid-tier-label::before { width: 6px; }
.modal-pyramid-tier.tier-1 .modal-pyramid-tier-label::before { width: 11px; }
.modal-pyramid-tier.tier-2 .modal-pyramid-tier-label::before { width: 18px; }
.modal-pyramid-tier-val {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ─── Pairings: "Si te gusta X, probá..." ──────────────────────── */
.modal-pairings {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.modal-pairings-title {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
  font-weight: 500;
}
.modal-pairings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-pairing {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--cream);
  border: 1px solid var(--hair);
  cursor: pointer;
  text-align: left;
  transition: var(--t-fast);
}
.modal-pairing:hover {
  border-color: var(--gold);
  background: var(--champagne);
  transform: translateY(-2px);
}
.modal-pairing-img {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-pairing-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.modal-pairing-info { min-width: 0; }
.modal-pairing-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 3px;
}
.modal-pairing-family {
  font-size: 8.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
@media (max-width: 720px) {
  .modal-pairings-grid { grid-template-columns: 1fr; }
}

/* Presentation & specs */
.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.modal-spec {
  padding: 0 20px 0 0;
}
.modal-spec + .modal-spec {
  padding-left: 20px;
  border-left: 1px solid var(--hair);
}
.modal-spec-lbl {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
  font-weight: 500;
}
.modal-spec-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.modal-actions .btn { flex: 1; justify-content: center; }

/* Color selector for equipment */
.modal-colors {
  margin-top: 28px;
}
.modal-colors-title {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
  font-weight: 500;
}
.modal-color-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.modal-color-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--hair-strong);
  background: transparent;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: var(--t-fast);
  font-weight: 500;
}
.modal-color-btn:hover { border-color: var(--ink); color: var(--ink); }
.modal-color-btn.on {
  border-color: var(--ink);
  color: var(--ink);
}
.modal-color-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
/* ================================================================
   RESPONSIVE — Tablet & Mobile
   ================================================================ */

/* Tablet — 1080px y menos */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: auto; aspect-ratio: 4 / 3; order: -1; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .equipment { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .frag-grid { grid-template-columns: repeat(3, 1fr); }
  .spray-grid { grid-template-columns: repeat(3, 1fr); }
  .textil-grid { grid-template-columns: repeat(3, 1fr); }
  .comodato { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .modal { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
  .modal-visual { padding: 40px 20px; min-height: 340px; }
  .modal-visual img { max-height: 280px; }
  .modal-visual-bg { font-size: 120px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .tech-compare { grid-template-columns: 1fr; gap: 20px; }
  .calc-result { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .calc-result-icon { margin: 0 auto; }
  .calc-cta { justify-content: center; }
}

/* Tablet pequeño — 780px */
@media (max-width: 780px) {
  .equipment { grid-template-columns: 1fr; }
  /* minmax(0,1fr): sin esto, '1fr' = minmax(auto,1fr) deja que una columna crezca
     según el ancho intrínseco de la imagen y desbalancea las 2 columnas (una se
     ve más grande y "corrida"). minmax(0,...) fuerza columnas iguales. */
  .frag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
  .spray-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .textil-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .frag-card, .spray-card, .textil-card { min-width: 0; }
}

/* Mobile — 720px y menos. Reescritura completa */
@media (max-width: 720px) {
  /* Base typography & spacing */
  :root {
    --gutter: 20px;
  }
  body { font-size: 14px; }
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Announce bar */
  .announce {
    font-size: 9px;
    padding: 10px 12px;
    letter-spacing: .2em;
    line-height: 1.6;
  }
  .announce-dot { margin: 0 8px; }

  /* Nav */
  .nav-inner { padding: 16px 20px; }
  .nav-logo { height: 28px; }
  .nav.scrolled .nav-logo { height: 24px; }
  .nav-actions { gap: 10px; }
  .nav-icon-btn { width: 32px; height: 32px; }
  .nav-icon-btn svg { width: 16px; height: 16px; }

  /* Hero */
  .hero-visual { aspect-ratio: 1 / 1; }
  .hero-content {
    padding: 56px 20px;
  }
  .hero-eyebrow { margin-bottom: 24px; }
  .hero-eyebrow::before { width: 28px; }
  .eyebrow { font-size: 9.5px; letter-spacing: .28em; }
  .hero-title {
    font-size: clamp(38px, 11vw, 56px);
    margin-bottom: 24px;
    line-height: 1;
  }
  .hero-body {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 48px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
  }
  .hero-meta-num { font-size: 22px; }
  .hero-meta-lbl { font-size: 8.5px; letter-spacing: .18em; }
  .hero-slide-tag {
    top: 16px; right: 16px;
    padding: 8px 12px;
    min-width: 0;
  }
  .hero-slide-label { font-size: 8.5px; letter-spacing: .24em; }
  .hero-slide-name { font-size: 16px; }
  .hero-slide-info {
    left: 16px; right: 16px; bottom: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-slide-spec {
    font-size: 11px;
    padding: 9px 14px;
    text-align: center;
  }
  .hero-dots { align-self: center; padding: 8px 12px; }
  .hero-watermark { font-size: clamp(100px, 35vw, 180px); bottom: 2%; }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee-item { font-size: 18px; gap: 40px; }
  .marquee-track { gap: 40px; }

  /* Section headers */
  .section-header { margin-bottom: 40px; gap: 16px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); margin-top: 14px; }
  .lead { font-size: 14px; line-height: 1.7; }

  /* Services */
  .service-content { padding: 28px 24px 32px; }
  .service-title { font-size: 24px; }
  .service-desc { font-size: 13.5px; }

  /* Equipment */
  .equip-visual { padding: 10%; }
  .equip-badge {
    top: 14px; left: 14px;
    font-size: 8.5px;
    padding: 6px 10px;
    letter-spacing: .22em;
  }
  .equip-colors { bottom: 14px; padding: 5px 8px; }
  .color-dot { width: 16px; height: 16px; }
  .equip-name { font-size: 26px; }
  .equip-kicker { font-size: 9.5px; }
  .equip-desc { font-size: 13px; }
  .equip-cta .btn { font-size: 9px; padding: 10px 12px; letter-spacing: .18em; }

  /* Fragrances */
  .frag-filters { gap: 6px; margin-bottom: 36px; padding-bottom: 24px; overflow-x: auto; flex-wrap: nowrap; padding-right: 20px; }
  .frag-filter { padding: 8px 14px; font-size: 9.5px; white-space: nowrap; }
  .frag-card-num { top: 14px; right: 14px; font-size: 11px; }
  .frag-info { padding: 16px 4px 4px; }
  .frag-family { font-size: 8.5px; letter-spacing: .24em; }
  .frag-name { font-size: 16px; line-height: 1.15; }
  .frag-ml { font-size: 10.5px; }

  /* Sprays */
  .spray-info { padding: 14px 2px; }
  .spray-name { font-size: 15px; }
  .spray-ml { font-size: 10px; }

  /* Textiles */
  .textil-grid { gap: 12px; }
  .textil-info { padding: 14px 2px; }
  .textil-name { font-size: 16px; line-height: 1.15; }
  .textil-eyebrow { font-size: 8.5px; letter-spacing: .22em; margin-bottom: 7px; }
  .textil-note { font-size: 11px; }

  /* Comodato */
  .comodato { min-height: auto; }
  .comodato-left, .comodato-right { padding: 48px 20px; }
  .comodato-title { font-size: clamp(32px, 9vw, 48px); margin-bottom: 20px; }
  .comodato-desc { font-size: 14px; margin-bottom: 24px; }
  .comodato-badge { font-size: 9px; padding: 8px 12px; letter-spacing: .25em; }
  .comodato-trial {
    padding: 18px 20px;
    gap: 16px;
    margin-bottom: 28px;
  }
  .comodato-trial-num { font-size: 48px; }
  .comodato-trial-text strong { font-size: 13px; }
  .comodato-trial-text span { font-size: 11.5px; }
  .comodato-sectors { gap: 5px; margin-bottom: 28px; }
  .comodato-sector { font-size: 9.5px; padding: 6px 10px; letter-spacing: .18em; }
  .comodato-ctas { flex-direction: column; gap: 10px; }
  .comodato-ctas .btn { width: 100%; justify-content: center; }
  .comodato-includes-title { font-size: 9.5px; margin-bottom: 28px; }
  .comodato-list li { padding: 16px 0; gap: 14px; grid-template-columns: 28px 1fr; }
  .comodato-list-num { font-size: 15px; }
  .comodato-list-content strong { font-size: 14px; }
  .comodato-list-content p { font-size: 12.5px; }

  /* Process */
  .process { grid-template-columns: 1fr; gap: 28px; }
  .process-num { width: 60px; height: 60px; font-size: 20px; margin-bottom: 20px; }
  .process-title { font-size: 20px; }
  .process-desc { font-size: 13px; }

  /* Testimonials */
  .testimonial { padding: 28px 20px; }
  .testimonial-quote { font-size: 17px; margin-bottom: 24px; }
  .testimonial-avatar { width: 38px; height: 38px; font-size: 13px; }
  .testimonial-meta strong { font-size: 12.5px; }
  .testimonial-meta span { font-size: 11px; }

  /* Contact */
  .contact { gap: 36px; }
  .contact-info .display { font-size: clamp(28px, 8vw, 40px); margin-bottom: 28px; }
  .contact-method { padding: 16px 0; }
  .contact-method-value { font-size: 16px; }
  .contact-method-label { font-size: 9.5px; }
  .form { padding: 32px 20px; }
  .form-title { font-size: 24px; }
  .form-sub { font-size: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .form-label { font-size: 9.5px; }
  .form-input, .form-select, .form-textarea { font-size: 14px; padding: 12px 0; }
  .form-submit { padding: 16px; font-size: 10.5px; }

  /* Footer */
  .footer { padding: 64px 0 32px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    margin-bottom: 28px;
  }
  .footer-logo { height: 40px; margin-bottom: 14px; }
  .footer-tag { font-size: 12.5px; max-width: none; }
  .footer-col-title { font-size: 9.5px; margin-bottom: 18px; }
  .footer-col a, .footer-col p { font-size: 12.5px; padding: 4px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-copy { font-size: 10px; letter-spacing: .15em; line-height: 1.6; }

  /* Floating WA */
  .fab-wa { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .fab-wa svg { width: 22px; height: 22px; }

  /* Modal */
  .modal-overlay { padding: 0; }
  .modal { max-height: 100vh; height: 100vh; max-width: 100%; grid-template-columns: 1fr; }
  .modal-visual { min-height: 280px; padding: 30px 20px; }
  .modal-visual img { max-height: 230px; }
  .modal-visual-bg { font-size: 90px; }
  .modal-info { padding: 32px 20px 40px; }
  .modal-title { font-size: clamp(24px, 7vw, 32px); }
  .modal-family { font-size: 11.5px; }
  .modal-tagline { font-size: 15px; padding-left: 14px; margin-top: 18px; }
  .modal-desc { font-size: 13.5px; margin-top: 20px; line-height: 1.75; }
  .modal-character { margin-top: 22px; padding-top: 18px; gap: 8px; }
  .modal-char-chip { font-size: 10.5px; }
  .modal-notes { margin-top: 24px; padding: 22px 0; }
  .modal-note-row { grid-template-columns: 90px 1fr; gap: 14px; padding: 10px 0; }
  .modal-note-label { font-size: 13px; }
  .modal-note-val { font-size: 12.5px; }
  .modal-specs { gap: 0; margin-top: 22px; }
  .modal-spec-val { font-size: 16px; }
  .modal-uses { gap: 6px; margin-bottom: 24px; }
  .modal-use { font-size: 10.5px; padding: 6px 11px; }
  .modal-actions { flex-direction: column; gap: 10px; margin-top: 24px; }
  .modal-actions .btn { width: 100%; }

  /* ─── Fix modal-close en mobile ──────────────────────────────────
     En iPhone con notch / Dynamic Island el botón X quedaba tapado o
     fuera de alcance al scrollear. Lo fijamos con position:fixed y le
     damos margen seguro con safe-area-inset-top. */
  .modal-overlay {
    padding: 0;
    align-items: flex-start;
  }
  .modal {
    max-height: 100vh;
    max-height: 100dvh; /* unidad dinámica que considera barras de iOS */
    height: 100vh;
    height: 100dvh;
    width: 100%;
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: 1fr; /* en mobile va apilado */
    grid-template-rows: auto auto;
  }
  .modal-close {
    position: fixed;  /* fijo en viewport, no en modal */
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: calc(env(safe-area-inset-right, 0px) + 12px);
    width: 44px;
    height: 44px;
    font-size: 18px;
    background: rgba(240,231,214,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(28,23,19,0.25);
    z-index: 9999;
    border-radius: 50%;
  }
  .modal-visual {
    padding: 30px 20px 20px;
    min-height: 280px;
  }

  /* Science section */
  .science { padding: 56px 0; }
  .science-intro { margin-bottom: 56px; }
  .science-intro .display { font-size: clamp(26px, 8vw, 36px); }
  .science-intro p { font-size: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .stat { padding: 0 10px; }
  .stat-num { font-size: 44px; }
  .stat-desc { font-size: 12.5px; }
  .stat-source { font-size: 10px; }

  /* Tech section */
  .tech { padding: 56px 0; }
  .tech-card { padding: 32px 24px; }
  .tech-card-tag { top: 20px; right: 20px; font-size: 9px; }
  .tech-card-title { font-size: 22px; }
  .tech-card-sub { font-size: 10px; margin-bottom: 24px; }
  .tech-features li { font-size: 13px; padding: 12px 0; gap: 10px; }

  /* Calculadora */
  .calc { padding: 56px 0; }
  .calc-wrap { padding: 32px 20px; }
  .calc-header h3 { font-size: 24px; }
  .calc-header p { font-size: 13px; }
  .calc-slider-value { font-size: 36px; }
  .calc-slider-unit { font-size: 15px; }
  .calc-slider-wrap { margin: 36px 0 24px; }
  .calc-result { gap: 24px; margin-top: 32px; padding-top: 28px; }
  .calc-result-icon { width: 200px; height: 200px; padding: 20px; }
  .calc-result-text h4 { font-size: 24px; }
  .calc-result-text p { font-size: 13px; }
  .calc-cta .btn { width: 100%; justify-content: center; }
}

/* Mobile muy chico — 380px y menos */
@media (max-width: 380px) {
  .hero-title { font-size: 34px; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .frag-grid { grid-template-columns: 1fr; gap: 0; }
  .spray-grid { grid-template-columns: 1fr; gap: 0; }
  .textil-grid { grid-template-columns: 1fr; gap: 16px; }
  .comodato-trial { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .comodato-trial-num { font-size: 56px; }
}

/* Mobile menu overlay */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 200;  /* MAYOR que la nav (z-index:100) para taparla cuando está abierto */
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: transform var(--t-med);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-menu.on { transform: translateY(0); }
/* Cuando está abierto, la propia nav también debe quedar oculta visualmente */
.mob-menu.on ~ .nav,
body:has(.mob-menu.on) .nav {
  pointer-events: none;
}
.mob-menu a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
  transition: color var(--t-fast), padding var(--t-fast);
}
.mob-menu a:hover { color: var(--gold-deep); padding-left: 10px; }
.mob-menu-ctas {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mob-menu-ctas .btn { width: 100%; justify-content: center; }

/* Reveal animation (motion.dev)
   FAIL-SAFE: el contenido es visible por defecto. El estado oculto SOLO aplica
   cuando <html> tiene .js-reveal (lo agrega el guard del <head>). Si el JS o
   motion no cargan, .js-reveal se remueve y todo queda visible.
   Sin filter:blur a propósito: era la causa del bug de bloques en blanco en
   mobile. Ahora la animación la maneja motion (WAAPI/rAF), NO el transition CSS,
   así que el reveal funciona también en mobile sin ese artefacto. */
.reveal.on { will-change: auto; }
html.js-reveal .reveal:not(.on) {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
html.js-reveal .reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal,
  html.js-reveal .reveal:not(.on) { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FASE 7 — Carrito, modales nuevos, toasts, payment methods
   ═══════════════════════════════════════════════════════════════════════ */

/* Cart count badge */
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold, #b08d57);
  color: white;
  border-radius: 100px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  letter-spacing: 0;
}

/* Cart Panel (tooltip) */
.cart-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 16px;
  width: 380px;
  max-width: calc(100vw - 24px);
  background: var(--bone);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-panel);
  border: 1px solid var(--hair);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  z-index: 1500;
  overflow: hidden;
}
.cart-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cart-panel::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: var(--bone);
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
  transform: rotate(45deg);
}
.cart-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--hair);
}
.cart-panel-header h3 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--ink, #1a1a1a);
}
.cart-panel-close {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--muted, #888);
  cursor: pointer;
  border-radius: 50%;
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-panel-close:hover { background: rgba(28,23,19,0.06); color: var(--ink, #1a1a1a); }

.cart-empty {
  padding: 50px 24px;
  text-align: center;
  color: var(--muted, #888);
}
.cart-empty-icon { font-size: 40px; margin-bottom: 14px; opacity: 0.5; }
.cart-empty p { font-size: 14px; margin: 0 0 6px; }
.cart-empty small { font-size: 12px; opacity: 0.7; }

.cart-items { max-height: 380px; overflow-y: auto; }
.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(28,23,19,0.06);
  align-items: flex-start;
}
.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--cream);
  background-size: cover;
  background-position: center;
}
.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  margin-bottom: 4px;
  line-height: 1.3;
}
.cart-item-color {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-deep, #9a7b2e);
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 12px;
  color: var(--muted, #888);
  margin-bottom: 8px;
}
.cart-item-price small { font-size: 11px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--hair-strong);
  background: var(--bone);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  cursor: pointer;
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--ink, #1a1a1a); color: var(--bone); border-color: var(--ink, #1a1a1a); }
.qty-num {
  font-size: 13px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item-rm {
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--terracotta);
  cursor: pointer;
  margin-left: 6px;
  padding: 0 4px;
  line-height: 1;
}
.cart-item-rm:hover { color: var(--terracotta-deep); }
.cart-item-total {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #1a1a1a);
  white-space: nowrap;
}

.cart-footer {
  padding: 18px 22px;
  background: var(--cream);
  border-top: 1px solid var(--hair);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.cart-total-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #888);
  font-weight: 600;
}
.cart-total-amount {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink, #1a1a1a);
}
.cart-total-amount small { font-size: 12px; opacity: 0.6; }

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

/* Decoration overlay on product cards (price + add button) */
/* Overlay precio + botón agregar para FRAGANCIAS y AEROSOLES.
   Desktop: flota sobre la imagen del producto.
   Mobile: panel limpio debajo del card (clase distinta agregada por JS según viewport). */

/* DESKTOP: overlay flotante dentro del .frag-visual o .spray-visual */
.card-cart-overlay {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: rgba(240,231,214,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-pop);
  padding: 4px;
  z-index: 5;
  white-space: nowrap;
  max-width: calc(100% - 24px);
}
.card-cart-overlay > * { pointer-events: auto; }

/* MOBILE: panel debajo del card (apendido al .frag-card o .spray-card) */
.card-cart-panel-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 4px;
  padding: 6px 6px 6px 4px;
  background: var(--bone, #faf8f4);
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  width: 100%;
}

/* Estilos del precio (compartidos) */
.card-price {
  font-family: var(--serif, Georgia, serif);
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.card-cart-overlay .card-price {
  padding: 6px 14px 6px 16px;
  font-size: 16px;
}
.card-cart-panel-mobile .card-price {
  padding: 6px 2px 6px 12px;
  font-size: 15px;
  min-width: 0;
  flex-shrink: 1;
  white-space: nowrap;
}
.card-price small {
  font-family: var(--font-sans, sans-serif);
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.card-cart-overlay .card-price small { font-size: 10px; }
.card-cart-panel-mobile .card-price small { font-size: 11px; }

/* Botón Agregar (compartido) */
.card-add-btn {
  background: var(--ink, #1a1a1a);
  color: var(--bone);
  border: none;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.card-cart-overlay .card-add-btn {
  padding: 8px 16px;
  font-size: 11px;
}
.card-cart-panel-mobile .card-add-btn {
  padding: 9px 14px;
  font-size: 11px;
  flex-shrink: 0;
}
.card-add-btn:hover {
  background: var(--gold, #b08d57);
}

/* Panel de carrito abajo del card (para equipos): no solapa contenido existente */
.card-cart-panel {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bone, #faf8f4);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.card-cart-panel-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.cart-panel-amount {
  font-family: var(--serif, Georgia, serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
}
.cart-panel-currency {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted, #888);
  font-weight: 500;
}
/* Variantes para precios duales (comodato + venta) en cards de equipos */
.card-cart-panel-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.card-cart-panel-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: space-between;
}
.cart-panel-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #888);
  font-weight: 600;
  margin-right: 6px;
}
.cart-panel-amount-sm {
  font-family: var(--serif, Georgia, serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
}
.cart-panel-amount-sm small {
  font-size: 10px;
  color: var(--muted, #888);
  font-weight: 500;
  margin-left: 2px;
}
/* Panel dual: 1 fila por modalidad (comodato y/o venta), c/u con su botón */
.card-cart-panel-dual {
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.card-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-cart-row-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Variantes visuales para distinguir los 2 CTAs */
.card-cart-btn-comodato {
  background: var(--ink, #1a1a1a);
}
.card-cart-btn-venta {
  background: var(--gold, #b08d57);
}
.card-cart-btn-venta:hover {
  background: var(--gold-deep, #8d6f3f);
}
.card-cart-panel-btn {
  background: var(--ink, #1a1a1a);
  color: var(--bone);
  padding: 10px 18px;
  border: none;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
}
.card-cart-panel-btn:hover {
  background: var(--gold, #b08d57);
}

/* Skeleton "Cargando precio…" mientras el catálogo del API levanta (cold start) */
.card-price-skeleton {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--taupe, #8a7d6a);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}
.card-price-skeleton .sk-bar {
  width: 80px;
  height: 14px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(176,141,87,.14) 25%, rgba(176,141,87,.30) 37%, rgba(176,141,87,.14) 63%);
  background-size: 400% 100%;
  animation: skShimmer 1.3s ease infinite;
}
@keyframes skShimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
/* CTA "Consultá por WhatsApp" cuando un equipo no tiene venta directa */
.card-cart-btn-wa {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: #2d6a4f;
}
.card-cart-btn-wa:hover { background: #245a42; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink, #1a1a1a);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  z-index: 5000;
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: var(--sh-pop);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-success { background: #2d6a4f; }
.toast-error { background: #c44; }
/* Atajo dentro del toast (ej. "Ver carrito") */
.toast-action {
  margin-left: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.toast-action:hover { background: rgba(255,255,255,.18); }

/* Micro-resalto del ícono del carrito al agregar un producto */
@keyframes cartIconBump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.28); }
  60%  { transform: scale(.94); }
  100% { transform: scale(1); }
}
.nav-icon-btn.cart-bump svg { animation: cartIconBump .45s ease; }

/* Modales nuevos (checkout, confirm, comodato, seguir pedido) */
.modal-v7 {
  position: fixed;
  inset: 0;
  background: rgba(28,23,19,0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.modal-v7.on { display: flex; opacity: 1; }
.modal-v7-content {
  background: var(--bone);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.96);
  transition: transform var(--t-fast);
}
.modal-v7.on .modal-v7-content { transform: scale(1); }
.modal-v7-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(28,23,19,0.06);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ink, #1a1a1a);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-fast);
}
.modal-v7-close:hover { background: var(--ink, #1a1a1a); color: var(--bone); }
.modal-v7-body { padding: 36px 32px; }
.modal-v7-body h2 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink, #1a1a1a);
}
.modal-v7-body > p {
  color: var(--muted, #888);
  margin: 0 0 24px;
  font-size: 14px;
}

/* Form fields */
.field-group { margin-bottom: 16px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted, #888);
  font-weight: 600;
  margin-bottom: 6px;
}
.field-input,
.field-textarea,
.field-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink, #1a1a1a);
  font-family: inherit;
  transition: var(--t-fast);
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  outline: none;
  border-color: var(--gold, #b08d57);
  background: var(--bone);
}
.field-textarea {
  min-height: 80px;
  resize: vertical;
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--taupe); opacity: .65; }

/* Checkout summary */
.checkout-summary {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 22px;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  color: var(--ink, #1a1a1a);
}
.checkout-line small {
  color: var(--muted, #888);
  margin-left: 4px;
}
.checkout-line.total {
  border-top: 1px solid var(--hair);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 16px;
  font-weight: 700;
}

/* Payment methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.payment-method {
  padding: 14px 10px;
  border: 1.5px solid var(--hair-strong);
  border-radius: var(--r-md);
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  transition: var(--t-fast);
}
.payment-method:hover { border-color: var(--gold, #b08d57); }
.payment-method.selected {
  border-color: var(--ink, #1a1a1a);
  background: var(--ink, #1a1a1a);
  color: var(--bone);
}
.payment-method-emoji {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
  color: var(--gold-deep);
}
.payment-method.selected .payment-method-emoji { color: var(--bone); }
.payment-method-emoji svg { width: 22px; height: 22px; display: block; margin: 0 auto; }

/* Confirmation modal */
.confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-size: 32px;
}
.confirm-num {
  background: var(--cream);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  display: inline-block;
  font-family: var(--font-serif, Georgia, serif);
  font-size: 22px;
  font-weight: 600;
  margin: 14px 0 22px;
  letter-spacing: 0.04em;
}
.confirm-instructions-box {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: left;
  margin-bottom: 18px;
}
.confirm-instructions-box h3 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 20px;
  margin: 0 0 14px;
  color: var(--ink, #1a1a1a);
}
.confirm-instructions {
  white-space: pre-wrap;
  font-size: 13px;
  color: var(--ink, #1a1a1a);
  line-height: 1.7;
}
.confirm-total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  margin-bottom: 8px;
  border-top: 1px solid var(--hair);
}
.confirm-total-line strong {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 22px;
}
.confirm-token {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted, #888);
  background: var(--cream);
  padding: 8px 12px;
  border-radius: var(--r-md);
  word-break: break-all;
}
.confirm-token-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #888);
  font-weight: 600;
  margin: 14px 0 6px;
  text-align: left;
}

/* Comodato success */
.comodato-success-msg {
  text-align: center;
  padding: 20px 0;
}
.comodato-success-msg .confirm-icon {
  background: var(--gold, #b08d57);
}

/* Footer track-order section */
.footer-track {
  background: rgba(255,255,255,0.05);
  padding: 22px;
  border-radius: var(--r-lg);
  margin-bottom: 28px;
}
.footer-track h5 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
}
.footer-track p {
  font-size: 12px;
  opacity: 0.7;
  margin: 0 0 14px;
}
.footer-track-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
}
.footer-track input {
  padding: 10px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 13px;
  font-family: inherit;
}
.footer-track input::placeholder { color: rgba(255,255,255,0.4); }
.footer-track input:focus {
  outline: none;
  border-color: var(--gold, #b08d57);
}
.footer-track button {
  padding: 10px 18px;
  background: var(--gold, #b08d57);
  color: var(--ink);
  border: none;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-track button:hover { background: var(--ink, #1a1a1a); }

/* Track order modal result */
.track-result {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-top: 16px;
}
.track-result-state {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.track-state-pendiente_pago { background: #fff3cd; color: #856404; }
.track-state-pagado { background: #d1ecf1; color: #0c5460; }
.track-state-preparando { background: #d4edda; color: #155724; }
.track-state-despachado { background: #cce5ff; color: #004085; }
.track-state-entregado { background: #2d6a4f; color: #fff; }
.track-state-cancelado { background: #f8d7da; color: #721c24; }
.track-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
}
.track-row strong { color: var(--ink, #1a1a1a); }

/* Mobile adjustments */
@media (max-width: 640px) {
  .cart-panel {
    width: calc(100vw - 16px);
    right: 8px;
    left: 8px;
    max-width: none;
    max-height: calc(100dvh - 96px);
    display: flex;
    flex-direction: column;
  }
  .cart-panel #cartPanelBody { overflow-y: auto; -webkit-overflow-scrolling: touch; }

  /* Modales v7 en mobile: full-screen, scrollable, X siempre visible */
  .modal-v7 {
    padding: 0;
    align-items: flex-start;
  }
  .modal-v7-content {
    max-height: 100vh;
    max-height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }
  .modal-v7-body { padding: 28px 22px; padding-top: calc(env(safe-area-inset-top, 0px) + 70px); }
  .modal-v7-close {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: calc(env(safe-area-inset-right, 0px) + 12px);
    width: 44px;
    height: 44px;
    background: rgba(240,231,214,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(28,23,19,0.25);
    font-size: 22px;
    z-index: 9999;
  }

  .field-row { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr 1fr; }
  .footer-track-form { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════════════════
   STATS BAR — credibilidad inmediata después del hero
   ═════════════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 56px 0;
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(200, 164, 126, 0.2);
  border-bottom: 1px solid rgba(200, 164, 126, 0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 0 12px;
}
.stat-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 164, 126, 0.3) 50%, transparent 100%);
}
@media (max-width: 780px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .stat-divider { display: none; }
  .stat-number { font-size: 36px; }
  .stat-label { font-size: 11px; }
}

/* ═════════════════════════════════════════════════════════════════
   KITS — Equipo + Aerosol (lección Odorite)
   ═════════════════════════════════════════════════════════════════ */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kit-card {
  position: relative;
  background: var(--bone);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hair);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.kit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -12px rgba(28, 23, 19, 0.18);
}
.kit-card-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #f5eede 0%, var(--cream) 100%);
}
.kit-card-comodato {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
}
.kit-card-comodato .kit-title { color: var(--bone); }
.kit-card-comodato .kit-desc { color: rgba(250, 247, 242, 0.75); }
.kit-card-comodato .kit-includes li { color: rgba(250, 247, 242, 0.85); }
.kit-card-comodato .kit-pricing-now { color: var(--gold); }
.kit-card-comodato .kit-pricing-save { color: rgba(250, 247, 242, 0.6); }
.kit-card-comodato .kit-image-comodato {
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.kit-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--ink);
  color: var(--bone);
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}
.kit-badge-gold {
  background: var(--gold);
  color: var(--ink);
}
.kit-badge-dark {
  background: var(--gold);
  color: var(--ink);
}
.kit-image {
  position: relative;
  height: 240px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.kit-image img {
  max-width: 65%;
  max-height: 75%;
  object-fit: contain;
}
.kit-image-secondary {
  position: absolute;
  right: 24px;
  bottom: 16px;
  width: 80px;
  height: 80px;
  background: var(--bone);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(28, 23, 19, 0.14);
  padding: 8px;
}
.kit-image-secondary img {
  max-width: 100%;
  max-height: 100%;
}
.kit-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.kit-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.kit-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.kit-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.kit-includes li {
  padding-left: 0;
}
.kit-pricing {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  margin-bottom: 16px;
}
.kit-card-comodato .kit-pricing { border-top-color: rgba(200, 164, 126, 0.2); }
.kit-pricing-old {
  font-size: 14px;
  color: rgba(28, 23, 19, 0.4);
  margin-bottom: 2px;
  min-height: 18px;
}
.kit-pricing-now {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.kit-pricing-save {
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.kit-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}
@media (max-width: 980px) {
  .kits-grid { grid-template-columns: 1fr; gap: 20px; }
  .kit-card-featured { transform: scale(1); }
}

/* ═════════════════════════════════════════════════════════════════
   FAQ — preguntas frecuentes con accordion
   ═════════════════════════════════════════════════════════════════ */
.faq-section { padding: 100px 0; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item:hover {
  border-color: var(--gold);
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(28, 23, 19, 0.06);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-answer {
  padding: 0 28px 24px;
}
.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.faq-answer a {
  font-weight: 500;
}
@media (max-width: 640px) {
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-answer { padding: 0 20px 20px; }
  .faq-answer p { font-size: 14px; }
}

/* ═════════════════════════════════════════════════════════════════
   NEUROCIENCIA — argumento académico (inspirado en Olfativa)
   ═════════════════════════════════════════════════════════════════ */
.neuro-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.neuro-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.neuro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.neuro-text .eyebrow { color: var(--gold); }
.neuro-text .section-title { color: var(--bone); }
.neuro-text .section-title em { color: var(--gold); }
.neuro-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.8);
  margin-top: 24px;
  font-weight: 300;
}
.neuro-lead strong {
  color: var(--bone);
  font-weight: 500;
}
.neuro-quote {
  margin-top: 40px;
  padding: 32px 36px 32px 56px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 164, 126, 0.04);
  position: relative;
  border-radius: 2px;
}
.neuro-quote-mark {
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}
.neuro-quote-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  font-style: italic;
  color: var(--bone);
  margin: 0 0 18px;
  font-weight: 400;
}
.neuro-quote-author {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.neuro-quote-author strong {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.neuro-quote-author span {
  color: rgba(250, 247, 242, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.neuro-facts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.neuro-fact {
  padding: 28px 32px;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(200, 164, 126, 0.15);
  border-radius: 4px;
  transition: border-color .25s, background .25s;
}
.neuro-fact:hover {
  border-color: var(--gold);
  background: rgba(250, 247, 242, 0.06);
}
.neuro-fact-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.neuro-fact-pct {
  font-size: 28px;
  margin-left: 2px;
}
.neuro-fact-unit {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 12px;
  display: inline-block;
  vertical-align: bottom;
}
.neuro-fact-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.75);
  margin-top: 12px;
}
.neuro-fact-text strong {
  color: var(--bone);
  font-weight: 500;
}

.neuro-tagline {
  margin-top: 80px;
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid rgba(200, 164, 126, 0.15);
}
.neuro-tagline p {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.4;
  color: var(--bone);
  font-weight: 300;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin: 0 auto;
}
.neuro-tagline em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 980px) {
  .neuro-section { padding: 80px 0; }
  .neuro-grid { grid-template-columns: 1fr; gap: 50px; }
  .neuro-quote-text { font-size: 19px; }
  .neuro-fact-num { font-size: 44px; }
  .neuro-tagline p { font-size: 24px; }
  .neuro-tagline { margin-top: 50px; padding-top: 40px; }
}
@media (max-width: 580px) {
  .neuro-quote { padding: 24px 20px 24px 40px; }
  .neuro-quote-mark { font-size: 56px; left: 12px; }
  .neuro-fact { padding: 22px 22px; }
  .neuro-tagline p { font-size: 20px; }
}

/* impact-source: cita académica debajo de cada dato */
.impact-source {
  font-size: 11px;
  color: var(--gold-deep);
  margin-top: 10px;
  letter-spacing: 0.04em;
  font-style: italic;
  border-top: 1px solid var(--hair);
  padding-top: 10px;
}
.impact-card-highlight .impact-source {
  color: var(--gold);
  border-top-color: rgba(200, 164, 126, 0.2);
}

/* ═════════════════════════════════════════════════════════════════
   IMPACT SECTION — datos del marketing olfativo
   ═════════════════════════════════════════════════════════════════ */
.impact-section {
  padding: 100px 0;
  background: var(--bone);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.impact-card {
  background: var(--bone);
  padding: 36px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--hair);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color var(--t-fast);
}
.impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -8px rgba(28, 23, 19, 0.1);
  border-color: var(--gold);
}
.impact-card-highlight {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--bone);
  border-color: var(--ink);
}
.impact-card-highlight:hover { border-color: var(--gold); }
.impact-card-highlight .impact-title { color: var(--bone); }
.impact-card-highlight .impact-desc { color: rgba(250, 247, 242, 0.75); }
.impact-card-highlight .impact-number { color: var(--gold); }
.impact-number {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.impact-pct {
  font-size: 32px;
  color: var(--gold);
  margin-left: 2px;
}
.impact-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.impact-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .impact-number { font-size: 52px; }
  .impact-card { padding: 28px 22px; }
}
@media (max-width: 580px) {
  .impact-grid { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════════════════
   AMBIENTES — tipos de negocios que aromatizamos
   ═════════════════════════════════════════════════════════════════ */
.ambientes-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
}
.ambientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ambiente-card {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 32px 20px;
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  cursor: default;
}
.ambiente-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(28, 23, 19, 0.1);
  border-color: var(--gold);
}
.ambiente-icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--gold-deep);
  line-height: 1;
}
.ambiente-icon svg { width: 34px; height: 34px; display: block; margin: 0 auto; }
.ambiente-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
/* Línea de beneficio por rubro — SEO de cola larga, siempre visible */
.ambiente-benefit {
  font-size: 12px;
  line-height: 1.5;
  color: var(--taupe);
  margin: 8px 0 0;
}
@media (max-width: 980px) {
  .ambientes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ambientes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ambiente-card { padding: 24px 14px; }
  .ambiente-icon { font-size: 28px; }
  .ambiente-icon svg { width: 28px; height: 28px; }
  .ambiente-name { font-size: 12px; }
  .ambiente-benefit { font-size: 11px; }
}

/* ═════════════════════════════════════════════════════════════════
   KITS — 4 modelos de equipo + configurador funcional
   ═════════════════════════════════════════════════════════════════ */
.kits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
}

/* Grid de 4 modelos */
.kits-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.kit-model {
  position: relative;
  background: var(--bone);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hair);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color var(--t-fast);
  display: flex;
  flex-direction: column;
}
.kit-model:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(28, 23, 19, 0.14);
}
.kit-model-premium {
  background: linear-gradient(180deg, #f5eede 0%, #faf5ec 100%);
  border-color: rgba(200, 164, 126, 0.35);
}
.kit-model-premium:hover {
  border-color: var(--gold);
}
.kit-model-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--bone);
  padding: 4px 10px;
  border: 1px solid var(--gold);
  border-radius: var(--r-pill);
}
.kit-model-image {
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.kit-model-image img {
  max-width: 60%;
  max-height: 75%;
  object-fit: contain;
}
.kit-model-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.kit-model-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.kit-model-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.kit-model-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.kit-model-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.kit-model-price-from {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}
.kit-model-price-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.kit-model-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .kits-models-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .kits-models-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Banner Comodato dentro de kits */
.kits-comodato-banner {
  background: var(--ink);
  color: var(--bone);
  border-radius: 6px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.kits-comodato-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(200, 164, 126, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.kits-comodato-banner-text { position: relative; }
.kits-comodato-banner-text h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 10px;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.kits-comodato-banner-text p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.78);
  margin: 0;
}
.kits-comodato-banner-text strong {
  color: var(--gold);
  font-weight: 500;
}
.kits-comodato-banner-cta {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.kits-comodato-banner-cta .btn {
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}
.kits-comodato-banner-note {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
@media (max-width: 780px) {
  .kits-comodato-banner { grid-template-columns: 1fr; padding: 28px 24px; gap: 22px; text-align: left; }
  .kits-comodato-banner-cta { align-items: stretch; }
}

.kits-footnote {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.kits-footnote a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═════════════════════════════════════════════════════════════════
   KIT MODAL — selector interactivo (configurador)
   ═════════════════════════════════════════════════════════════════ */
.kit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.kit-modal.on {
  display: flex;
}
.kit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 23, 19, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.kit-modal-content {
  position: relative;
  background: var(--bone);
  border-radius: var(--r-lg);
  width: min(640px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px -16px rgba(28, 23, 19, 0.42);
  animation: kitModalIn .25s var(--ease);
  overflow: hidden;
}
@keyframes kitModalIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.kit-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(28, 23, 19, 0.06);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background .15s;
}
.kit-modal-close:hover {
  background: rgba(28, 23, 19, 0.08);
}
.kit-modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--hair);
}
.kit-modal-header h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin: 8px 0 0;
  letter-spacing: -0.02em;
}
.kit-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
}
.kit-modal-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--hair);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.kit-modal-summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kit-modal-summary-now {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.kit-modal-summary-save {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.kit-modal-footer .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Steps del configurador */
.kit-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.kit-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.kit-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
}
.kit-step-content {
  flex: 1;
  min-width: 0;
}
.kit-step-content h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--ink);
}
.kit-step-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  opacity: 0.75;
}

/* Opciones de cantidad */
.kit-cantidad-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.kit-cant-opt {
  position: relative;
  cursor: pointer;
}
.kit-cant-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kit-cant-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-md);
  background: var(--bone);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.kit-cant-label strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.kit-cant-label small {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.7;
}
.kit-cant-opt:hover .kit-cant-label {
  border-color: var(--gold-deep);
}
.kit-cant-opt-selected .kit-cant-label,
.kit-cant-opt input:checked + .kit-cant-label {
  border-color: var(--gold);
  background: #faf5ec;
}
.kit-cant-opt-selected .kit-cant-label small {
  color: var(--gold-deep);
  font-weight: 600;
  opacity: 1;
}

/* Slots de fragancias */
.kit-fragancias-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.kit-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px dashed var(--hair-strong);
  border-radius: var(--r-md);
  background: var(--bone);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.kit-slot:hover {
  border-color: var(--gold);
  border-style: solid;
}
.kit-slot-filled {
  border-style: solid;
  border-color: var(--hair-strong);
  background: var(--cream);
}
.kit-slot-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(28, 23, 19, 0.07);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.kit-slot-filled .kit-slot-num {
  background: var(--gold);
  color: var(--ink);
}
.kit-slot-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.kit-slot-thumb {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--bone);
  border: 1px solid var(--hair);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold);
}
.kit-slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kit-slot-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.kit-slot-info strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kit-slot-info span {
  font-size: 11px;
  color: var(--ink-soft);
}
.kit-slot-empty {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.kit-slot-change {
  font-size: 11px;
  background: none;
  border: 1px solid var(--hair-strong);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--t-fast);
}
.kit-slot-change:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* Selector de fragancia (overlay) */
.kit-fragancia-selector {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(28, 23, 19, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.kit-fragancia-selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hair);
  background: var(--bone);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.kit-fragancia-selector-header h5 {
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}
.kit-fragancia-selector-header button {
  background: rgba(28, 23, 19, 0.06);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink-soft);
}
.kit-fragancia-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 251;
  width: min(720px, 94vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px -16px rgba(28, 23, 19, 0.45);
}
.kit-fragancia-list {
  background: var(--bone);
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.kit-fragancia-selector::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
}
.kit-fragancia-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 94px;
  padding: 0;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  background: var(--bone);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.kit-fragancia-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 12px 24px -14px rgba(28, 23, 19, 0.35);
}
.kit-fragancia-thumb {
  width: 74px;
  flex-shrink: 0;
  align-self: stretch;
  background: linear-gradient(160deg, #f5eede 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  color: var(--gold-deep);
  font-size: 20px;
}
.kit-fragancia-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.kit-fragancia-info {
  flex: 1;
  min-width: 0;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kit-fragancia-info strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.kit-fragancia-info span {
  font-size: 10px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.kit-fragancia-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin: 4px 0 0;
}
.kit-notas-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-right: 3px;
}
.kit-fragancia-price {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}
.kit-fragancia-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 560px) {
  .kit-fragancia-list { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .kit-modal-content { width: 96vw; max-height: 95vh; }
  .kit-modal-header { padding: 24px 22px 16px; }
  .kit-modal-body { padding: 20px 22px; }
  .kit-modal-footer { padding: 16px 22px; }
  .kit-cantidad-options { grid-template-columns: 1fr 1fr; }
}

/* Premium badge en equipo Torre */
.equip-badge-premium {
  background: var(--bone);
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.1em;
}
.equip-card-torre {
  position: relative;
}
/* Jerarquía: destacar 2 equipos clave (Torre premium + A3000 industrial)
   con un aro gold sutil y una elevación de reposo apenas mayor, para romper
   la monotonía de 5 cards casi idénticas sin alterar la grilla. */
.equip-card-torre .equip-visual,
.equip-card-flagship .equip-visual {
  box-shadow: 0 0 0 1px var(--gold) inset, var(--sh-soft);
}
.equip-card-torre,
.equip-card-flagship {
  transform: translateY(-4px);
}
.equip-card-torre:hover,
.equip-card-flagship:hover {
  transform: translateY(-10px);
}

/* ═════════════════════════════════════════════════════════════════
   WHY SECTION — neurociencia + impacto fusionados
   ═════════════════════════════════════════════════════════════════ */
.why-section {
  padding: 110px 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-academic {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
  position: relative;
}
.why-academic .section-title {
  text-align: center;
  margin-top: 12px;
}
.why-academic-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.78);
  margin: 24px auto 0;
  max-width: 720px;
  font-weight: 300;
}
.why-academic-lead strong {
  color: var(--bone);
  font-weight: 500;
}

.why-quote {
  margin: 36px auto 0;
  max-width: 640px;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 164, 126, 0.04);
  text-align: left;
  border-radius: 2px;
}
.why-quote p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  color: var(--bone);
  margin: 0 0 14px;
  font-weight: 400;
}
.why-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.why-quote-author strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.why-quote-author span {
  color: rgba(250, 247, 242, 0.55);
  font-size: 12px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.why-stat {
  padding: 28px 24px;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(200, 164, 126, 0.15);
  border-radius: 4px;
  transition: border-color .25s, background .25s;
}
.why-stat:hover {
  border-color: var(--gold);
  background: rgba(250, 247, 242, 0.06);
}
.why-stat-highlight {
  background: linear-gradient(135deg, rgba(200, 164, 126, 0.15) 0%, rgba(200, 164, 126, 0.03) 100%);
  border-color: var(--gold);
}
.why-stat-num {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.why-stat-num span {
  font-size: 26px;
}
.why-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  margin-top: 12px;
}
.why-stat-source {
  font-size: 11px;
  color: rgba(250, 247, 242, 0.5);
  margin-top: 6px;
  font-style: italic;
}

/* Nota honesta bajo las estadísticas — hedging, sin tono categórico */
.why-disclaimer {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.55);
  font-style: italic;
}

.why-tagline {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(200, 164, 126, 0.15);
}
.why-tagline p {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.4;
  color: var(--bone);
  font-weight: 300;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin: 0 auto;
}
.why-tagline em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 980px) {
  .why-section { padding: 80px 0; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .why-quote p { font-size: 18px; }
  .why-stat-num { font-size: 42px; }
  .why-tagline p { font-size: 22px; }
}
@media (max-width: 580px) {
  .why-stats { grid-template-columns: 1fr; }
  .why-quote { padding: 22px 22px; }
  .why-tagline p { font-size: 19px; }
}

/* ═════════════════════════════════════════════════════════════════
   VIDEO EN FRAGANCE CARD — hover reveal
   ═════════════════════════════════════════════════════════════════ */
/* Wrapper del video con efecto "aura" — el poster del propio video se usa
   como fondo blureado para llenar las franjas con el ambiente del video */
.frag-card .frag-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  transition: opacity .35s ease;
  pointer-events: none;
}
.frag-card.video-on .frag-video-wrap {
  opacity: 1;
}
/* El fondo: el mismo video estirado, blureado y oscurecido = aura del video */
.frag-card .frag-video-bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(28px) saturate(1.2) brightness(0.85);
  transform: scale(1.1);
  pointer-events: none;
}
/* El video real centrado, sin recortes */
.frag-card .frag-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
}
.frag-card.video-on .frag-video {
  opacity: 1;
}
.frag-card .frag-img-still {
  transition: opacity .35s ease;
}
.frag-card.video-on .frag-img-still {
  opacity: 0;
}

/* ═════════════════════════════════════════════════════════════════
   CLIENTE DESTACADO — Mercedes-Benz
   ═════════════════════════════════════════════════════════════════ */
.client-feature {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
}
.client-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.client-feature-text { padding-right: 20px; }
.client-feature-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: inline-block;
}
.client-feature-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.client-feature-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.client-feature-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.client-feature-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  margin-bottom: 28px;
}
.client-feature-meta-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.client-feature-meta-item strong {
  color: var(--ink);
  font-weight: 500;
}
.client-feature-meta-bullet {
  color: var(--gold-deep);
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}
.client-feature-video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(28, 23, 19, 0.3);
  background: var(--ink);
  aspect-ratio: 9/16;
  max-width: 380px;
  margin: 0 auto;
}
.client-feature-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.client-feature-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(28, 23, 19, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bone);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.client-feature-video-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3a3a;
  animation: clientLiveDot 1.4s ease-in-out infinite;
}
@keyframes clientLiveDot {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@media (max-width: 880px) {
  .client-feature { padding: 70px 0; }
  .client-feature-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .client-feature-text { padding-right: 0; text-align: center; }
  .client-feature-meta { align-items: center; }
  .client-feature-meta-item { justify-content: flex-start; max-width: 380px; margin: 0 auto; text-align: left; }
  .client-feature-title { font-size: 32px; }
  .client-feature-video { max-width: 280px; }
}

/* ================================================================
   CLIENTES REALES — carrusel de videos en el inicio (reels 9:16)
   ================================================================ */
.clientes-reales {
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
  overflow: hidden;
}
.clientes-reales-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin: 14px 0 30px;
}
.clientes-carousel {
  position: relative;
  margin-top: 4px;
}
.clientes-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 10px;
  margin: 0 -2px;
  scrollbar-width: none;
}
.clientes-track::-webkit-scrollbar { display: none; }
.cliente-video-card {
  position: relative;
  flex: 0 0 clamp(210px, 24vw, 264px);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 20px 44px -22px rgba(28, 23, 19, 0.5);
  scroll-snap-align: start;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease;
}
.cliente-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -22px rgba(28, 23, 19, 0.6);
}
.cliente-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cliente-video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.14) 0%, transparent 24%, transparent 74%, rgba(28, 23, 19, 0.34) 100%);
}
/* Flechas del carrusel */
.clientes-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  background: rgba(250, 246, 238, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(28, 23, 19, 0.35);
  transition: background .25s ease, transform .25s ease;
}
.clientes-carousel-btn:hover {
  background: var(--bone);
  transform: translateY(-50%) scale(1.07);
}
.clientes-carousel-prev { left: -12px; }
.clientes-carousel-next { right: -12px; }
/* Puntos indicadores */
.clientes-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.clientes-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--hair-strong);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.clientes-dot.on {
  background: var(--gold);
  transform: scale(1.35);
}
@media (max-width: 880px) {
  .clientes-carousel-btn { display: none; }
  .cliente-video-card { flex-basis: 64vw; }
  .clientes-reales-sub { font-size: 15px; }
}
@media (max-width: 480px) {
  .cliente-video-card { flex-basis: 76vw; }
}

/* ================================================================
   WIZARD CHECKOUT — 3 pasos con barra de progreso
   ================================================================ */
.wizard-modal {
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 40px 28px;
  border-bottom: 1px solid var(--hair);
  background: var(--cream);
}
.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.wizard-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bone);
  border: 1.5px solid var(--hair-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--taupe);
  font-weight: 400;
  transition: var(--t-fast);
}
.wizard-step-name {
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.wizard-step-dot.on .wizard-step-num,
.wizard-step-dot.done .wizard-step-num {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}
.wizard-step-dot.on .wizard-step-name {
  color: var(--ink);
}
.wizard-step-dot.done .wizard-step-num::after {
  content: '✓';
  position: absolute;
  font-size: 14px;
  font-family: var(--sans);
}
.wizard-step-dot.done .wizard-step-num {
  font-size: 0;
}
.wizard-step-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--hair-strong);
  margin-top: -22px;
  transition: background var(--t-fast);
}
.wizard-step-line.done {
  background: var(--ink);
}

.wizard-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.wizard-step {
  display: none;
  padding: 36px 40px 20px;
  overflow-y: auto;
  flex: 1;
}
.wizard-step.on {
  display: block;
}
.wizard-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 8px;
}
.wizard-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.55;
}

/* Cart items con cantidad editable en step 1 */
.wizard-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
  align-items: center;
}
.wizard-cart-item:last-of-type { border-bottom: none; }
.wizard-cart-img {
  width: 64px;
  height: 64px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--hair);
}
.wizard-cart-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.wizard-cart-name {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.wizard-cart-meta {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
}
.wizard-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hair-strong);
  background: var(--cream);
}
.wizard-cart-qty button {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: var(--t-fast);
}
.wizard-cart-qty button:hover { background: var(--champagne); }
.wizard-cart-qty button:disabled { opacity: .35; cursor: not-allowed; }
.wizard-cart-qty input {
  width: 36px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--hair-strong);
  border-right: 1px solid var(--hair-strong);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  background: var(--bone);
  -moz-appearance: textfield;
}
.wizard-cart-qty input::-webkit-outer-spin-button,
.wizard-cart-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.wizard-cart-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wizard-cart-price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.wizard-cart-remove {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.wizard-cart-remove:hover { color: var(--ink); }

.wizard-cart-totals {
  margin-top: 22px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--hair);
}
.wizard-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding: 4px 0;
  color: var(--muted);
}
.wizard-total-row.grand {
  border-top: 1px solid var(--hair-strong);
  padding-top: 14px;
  margin-top: 10px;
  font-size: 20px;
  color: var(--ink);
  font-family: var(--serif);
}
.wizard-total-row.grand .wizard-total-amount {
  color: var(--gold-deep);
  font-weight: 500;
}

/* Step 3 - mini resumen */
.zona-hint { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.envio-aviso {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Panel de datos bancarios (al elegir transferencia) */
.bancos-panel { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.bancos-panel-head { font-size: 13px; color: var(--ink-soft); margin-bottom: 2px; }
.bancos-panel-foot { font-size: 12px; color: var(--muted); margin-top: 4px; }
.banco-titular { border-top: 1px dashed var(--hair); margin-top: 4px; padding-top: 6px; }
.banco-titular strong { color: var(--ink); font-family: inherit; }
.bancos-panel-aviso {
  margin-top: 6px;
  padding: 12px 14px;
  background: #fff8e6;
  border: 1px solid #f0d27a;
  border-radius: var(--r-md);
  font-size: 13px;
  color: #8a6d1f;
  line-height: 1.5;
}
.banco-card {
  border: 1px solid var(--hair);
  border-left: 4px solid var(--banco-color, var(--gold));
  border-radius: var(--r-md);
  padding: 14px 16px;
  background: var(--bone);
  cursor: pointer;
  transition: box-shadow var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.banco-card:hover { box-shadow: 0 2px 10px rgba(28,23,19,.1); }
.banco-card.selected {
  border-color: var(--banco-color, var(--gold));
  box-shadow: 0 0 0 2px var(--banco-color, var(--gold)) inset;
  background: var(--cream);
}
.banco-head { display: flex; align-items: center; justify-content: space-between; }
.banco-check { color: var(--banco-color, var(--gold)); font-weight: 800; font-size: 18px; }
.banco-head { margin-bottom: 8px; }
.banco-logo { height: 26px; width: auto; max-width: 150px; object-fit: contain; display: block; }
.banco-nombre {
  font-weight: 700; font-size: 15px; letter-spacing: .02em;
  color: var(--banco-color, var(--ink));
}
.banco-datos { display: flex; flex-direction: column; gap: 4px; }
.banco-fila { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.banco-fila span { color: var(--muted); }
.banco-fila strong { font-family: var(--mono, monospace); color: var(--ink); letter-spacing: .02em; }

.wizard-summary-mini {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--hair);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.wizard-summary-mini-lbl {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.wizard-summary-mini-val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-deep);
}

/* Payment methods refinados para wizard step 3 */
.wizard-payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wizard-payment-methods .payment-method {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  padding: 16px 18px;
}
.wizard-payment-methods .payment-method strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2px;
}
.wizard-payment-methods .payment-method small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Footer del wizard */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 40px;
  border-top: 1px solid var(--hair);
  background: var(--bone);
}
.wizard-back { min-width: 110px; }
.wizard-next, .wizard-submit { min-width: 200px; margin-left: auto; }

@media (max-width: 720px) {
  /* Modal a pantalla completa y prolijo (resuelve el conflicto de alturas) */
  #checkoutModal { padding: 0; align-items: flex-start; }
  .wizard-modal { max-height: 100dvh; height: 100dvh; min-height: 100dvh; border-radius: 0; }
  .wizard-progress { padding: 20px 16px 16px; gap: 8px; }
  .wizard-step-num { width: 32px; height: 32px; font-size: 14px; }
  .wizard-step-name { font-size: 8.5px; letter-spacing: .18em; }
  .wizard-step-line { max-width: 40px; margin-top: -18px; }
  .wizard-step { padding: 22px 16px 16px; }
  .wizard-title { font-size: 22px; }
  .wizard-sub { margin-bottom: 20px; }
  /* En pantallas chicas los pares de campos se apilan para no quedar apretados */
  .field-row { grid-template-columns: 1fr; gap: 0; }
  /* iOS no hace zoom al enfocar si el input es >=16px (evita el "salto"/desfasaje) */
  .field-input, .field-select, .field-textarea { font-size: 16px; }
  .wizard-cart-item { grid-template-columns: 48px 1fr; gap: 14px; }
  .wizard-cart-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; margin-top: 6px; }
  .wizard-payment-methods { grid-template-columns: 1fr; }
  .wizard-footer { padding: 14px 16px calc(env(safe-area-inset-bottom, 0px) + 14px); flex-wrap: wrap; }
  .wizard-next, .wizard-submit { min-width: 140px; }
  .wizard-back { min-width: 80px; }
}

/* ================================================================
   EXPLORE — atajos en home a cada page
   ================================================================ */
/* ── Dos modelos: Comodato vs Compra ──────────────────────────── */
.modelos-section {
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  background: var(--cream);
}
.modelos-header { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.modelos-header .eyebrow { margin-bottom: 14px; display: inline-block; }
.modelos-title { font-size: clamp(30px, 4.6vw, 48px); }
.modelos-title em { color: var(--gold); font-style: italic; }
.modelos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.modelo-card {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}
/* Comodato = camino destacado (lo que empuja el hero) */
.modelo-comodato {
  border: 1.5px solid var(--gold);
  box-shadow: var(--sh-soft);
}
.modelo-badge {
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  background: rgba(189,154,104,.12);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.modelo-compra .modelo-badge { color: var(--muted); background: rgba(28,23,19,.06); }
.modelo-card-title { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 34px); line-height: 1.05; }
.modelo-tagline { color: var(--gold-deep); font-weight: 600; font-size: 15px; margin: 4px 0 20px; }
.modelo-compra .modelo-tagline { color: var(--taupe); }
.modelo-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.modelo-list li {
  position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft);
}
.modelo-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 800;
}
.modelo-cta { margin-top: auto; align-self: flex-start; }
@media (max-width: 720px) {
  .modelos-grid { grid-template-columns: 1fr; gap: 16px; }
}

.explore-section {
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  background: var(--bone);
}
.explore-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.explore-header .eyebrow { margin-bottom: 16px; display: inline-block; }
.explore-title {
  font-size: clamp(32px, 5vw, 54px);
}
.explore-title em { color: var(--gold); font-style: italic; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair-strong);
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--hair-strong);
}
.explore-card {
  background: var(--cream);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 60px 1fr 24px;
  gap: 24px;
  align-items: start;
  cursor: pointer;
  transition: var(--t-fast);
  position: relative;
  text-decoration: none;
  color: inherit;
  min-height: 220px;
}
.explore-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-med);
}
.explore-card:hover {
  background: var(--champagne);
  transform: translateY(-2px);
}
.explore-card:hover::before { transform: scaleY(1); }
.explore-card-num {
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.explore-card-body { min-width: 0; }
.explore-card-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
  font-weight: 500;
}
.explore-card-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.explore-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 340px;
}
.explore-card-arrow {
  font-size: 22px;
  color: var(--gold);
  align-self: center;
  transition: transform var(--t-fast);
}
.explore-card:hover .explore-card-arrow {
  transform: translateX(6px);
  color: var(--ink);
}
@media (max-width: 720px) {
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card {
    grid-template-columns: 48px 1fr 22px;
    padding: 28px 24px;
    gap: 18px;
    min-height: auto;
  }
  .explore-card-num { font-size: 30px; }
}

/* ================================================================
   PAGE HEADER — encabezado de cada route (no home)
   ================================================================ */
.page-header {
  position: relative;
  background:
    radial-gradient(120% 140% at 50% -30%, rgba(189,154,104,.13), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--hair);
  padding: clamp(78px, 11vw, 138px) var(--gutter) clamp(52px, 7vw, 86px);
  text-align: center;
  margin-top: 70px; /* compensar nav fija */
  overflow: hidden;
}
.page-header-eyebrow {
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.page-header-eyebrow::before,
.page-header-eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.page-header-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.page-header-title {
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0 auto 22px;
  max-width: 980px;
}
.page-header-title em {
  font-style: italic;
  background: linear-gradient(102deg, var(--gold-deep), var(--gold-bright) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header-sub {
  max-width: 580px;
  margin: 0 auto;
  font-size: 16.5px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .page-header { margin-top: 60px; }
  .page-header-sub { font-size: 14.5px; }
}

/* Nav links: estado activo (route actual) */
.nav-links a.on,
.mob-menu a.on {
  color: var(--gold-deep) !important;
  position: relative;
}
.nav-links a.on::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

/* ================================================================
   NEWSLETTER EDITORIAL — captura de leads
   ================================================================ */
.newsletter {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(200,164,126,.10), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(200,164,126,.07), transparent 55%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.newsletter-decor-line {
  width: 60px;
  height: 1px;
  background: rgba(200,164,126,.5);
}
.newsletter-decor-symbol {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0;
}
.newsletter-eyebrow {
  color: var(--gold);
  margin-bottom: 22px;
}
.newsletter-title {
  font-size: clamp(34px, 5vw, 52px);
  color: var(--bone);
  margin-bottom: 22px;
}
.newsletter-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.newsletter-lead {
  color: rgba(250,247,242,.65);
  max-width: 480px;
  margin: 0 auto 38px;
  font-size: 15.5px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 14px;
  border-bottom: 1px solid rgba(250,247,242,.25);
  transition: border-color var(--t-fast);
}
.newsletter-form:focus-within {
  border-color: var(--gold);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  padding: 16px 0;
  letter-spacing: .01em;
}
.newsletter-input::placeholder {
  color: rgba(250,247,242,.35);
  font-style: italic;
}
.newsletter-btn {
  background: transparent !important;
  border: none !important;
  color: var(--gold) !important;
  padding: 16px 0 16px 18px;
  letter-spacing: .26em;
}
.newsletter-btn:hover {
  color: var(--bone) !important;
}
.newsletter-fine {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,.4);
  margin-top: 16px;
}
.newsletter-thanks {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  padding: 24px 0;
}
@media (max-width: 540px) {
  .newsletter-form {
    flex-direction: column;
    border-bottom: none;
    gap: 14px;
  }
  .newsletter-input {
    border-bottom: 1px solid rgba(250,247,242,.25);
    text-align: center;
  }
  .newsletter-btn {
    padding: 14px 28px !important;
    border: 1px solid var(--gold) !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   TRUST STRIP — debajo del hero
   ════════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid rgba(189,154,104,.15);
  border-bottom: 1px solid rgba(189,154,104,.15);
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  font-size: 22px;
  width: 38px;
  height: 38px;
  background: var(--bone);
  border: 1px solid rgba(189,154,104,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
}
.trust-icon svg { width: 19px; height: 19px; display: block; }
.trust-item strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.trust-item small {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .8;
}
@media (max-width: 920px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   DEMO HERO — primer bloque de /servicios
   ════════════════════════════════════════════════════════════════════ */
.demo-hero {
  background: linear-gradient(135deg, var(--bone) 0%, var(--cream) 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(189,154,104,.18);
}
.demo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.demo-hero-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 14px 0 18px;
}
.demo-hero-title em {
  color: var(--gold-deep);
  font-style: italic;
}
.demo-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.demo-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-hero-list li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 6px;
}
.demo-hero-form {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(28,23,19,.08);
  border: 1px solid var(--champagne);
}
.demo-form-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.demo-form-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.demo-field { display: flex; flex-direction: column; gap: 5px; }
.demo-field-full { grid-column: 1 / -1; }
.demo-field span {
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.demo-field input,
.demo-field select,
.demo-field textarea {
  padding: 11px 13px;
  background: var(--bone);
  border: 1px solid var(--champagne);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
  resize: vertical;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus {
  outline: none;
  background: var(--bone);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189,154,104,.15);
}
.demo-form-submit {
  width: 100%;
  margin-top: 6px;
}
.demo-form-tiny {
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .7;
  margin: 10px 0 0;
}
@media (max-width: 920px) {
  .demo-hero { padding: 50px 0 40px; }
  .demo-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .demo-form-grid { grid-template-columns: 1fr; gap: 12px; }
  .demo-hero-form { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   WHATSAPP FLOTANTE — abajo-izquierda, siempre visible
   ════════════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: waPulse 3s infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37,211,102,.55);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 720px) {
  .wa-float { left: 14px; bottom: 86px; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ════════════════════════════════════════════════════════════════════
   UX POLISH — back-to-top, focus visible, fade rutas, scroll suave
   ════════════════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Skip-link: oculto fuera de pantalla, visible solo al recibir foco con teclado */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 20px;
  border-radius: 0 0 6px 0;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Fade-in suave al cambiar de ruta */
[data-route] {
  animation: routeFadeIn .35s var(--ease);
}
@keyframes routeFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(28,23,19,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
  z-index: 200;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold-deep); }
.back-to-top svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}
/* Card del cart con scroll suave + microinteracción */
.cart-item { transition: background .2s var(--ease); }
.cart-item:hover { background: rgba(189,154,104,.05); }

/* ════════════════════════════════════════════════════════════════════
   MEJORAS VISUALES 2026-06-09 — hilo de progreso, hero vivo,
   bruma aromática, contadores, finder de fragancias, ambientes+
   ════════════════════════════════════════════════════════════════════ */

/* Hilo de progreso de lectura — dorado, sobre el nav */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 300;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 60%, var(--gold));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* Palabra rotativa del hero — gradiente propio para poder animarla */
.hero-word {
  display: inline-block;
  padding-bottom: .05em;
  background: linear-gradient(102deg, var(--gold-deep), var(--gold-bright) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.hero-word.out {
  opacity: 0;
  transform: translateY(16px);
}

/* Bruma aromática — micropartículas doradas subiendo en el hero */
.hero-mist {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-mist span {
  position: absolute;
  bottom: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,185,133,.9), rgba(189,154,104,.3) 55%, transparent 72%);
  filter: blur(2px);
  opacity: 0;
  animation: mist-rise linear infinite;
}
.hero-mist span:nth-child(1) { left: 12%; width: 7px;  height: 7px;  animation-duration: 12s;   animation-delay: 0s; }
.hero-mist span:nth-child(2) { left: 26%; width: 5px;  height: 5px;  animation-duration: 15s;   animation-delay: 2.4s; }
.hero-mist span:nth-child(3) { left: 38%; width: 9px;  height: 9px;  animation-duration: 10.5s; animation-delay: 5s; }
.hero-mist span:nth-child(4) { left: 52%; width: 6px;  height: 6px;  animation-duration: 14s;   animation-delay: 1.2s; }
.hero-mist span:nth-child(5) { left: 64%; width: 10px; height: 10px; animation-duration: 11s;   animation-delay: 3.6s; }
.hero-mist span:nth-child(6) { left: 74%; width: 5px;  height: 5px;  animation-duration: 16s;   animation-delay: 6.5s; }
.hero-mist span:nth-child(7) { left: 84%; width: 8px;  height: 8px;  animation-duration: 12.5s; animation-delay: 0.8s; }
.hero-mist span:nth-child(8) { left: 93%; width: 6px;  height: 6px;  animation-duration: 13.5s; animation-delay: 4.2s; }
@keyframes mist-rise {
  0%   { transform: translate(0, 0) scale(.7); opacity: 0; }
  10%  { opacity: .55; }
  55%  { opacity: .35; transform: translate(16px, -46vh) scale(1.05); }
  100% { transform: translate(-12px, -88vh) scale(1.3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mist { display: none; }
  .hero-word, .hero-word.out { transition: none; opacity: 1; transform: none; }
}

/* Marquee — pausa al hover + fundido en los bordes */
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 110px);
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

/* Stats — números tabulares para el conteo animado sin saltos */
.stat-number { font-variant-numeric: tabular-nums; }

/* Ambientes — fragancias sugeridas por rubro (reveal al hover) */
.ambiente-card.has-frags { cursor: pointer; }
.ambiente-frags {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: max-height .4s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease);
}
.ambiente-card:hover .ambiente-frags {
  max-height: 70px;
  opacity: 1;
  margin-top: 12px;
}
.ambiente-frags-lbl {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.ambiente-frags-names {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--taupe);
}
@media (hover: none) {
  .ambiente-frags { max-height: 70px; opacity: 1; margin-top: 12px; }
}

/* ────────────────────────────────────────────────────────────────────
   FINDER — descubrí tu fragancia ideal (quiz 3 pasos, sección dark)
   ──────────────────────────────────────────────────────────────────── */
.finder {
  position: relative;
  border: 1px solid rgba(240,231,214,.14);
  background:
    radial-gradient(120% 140% at 88% -20%, rgba(189,154,104,.16), transparent 55%),
    radial-gradient(90% 120% at 0% 110%, rgba(189,154,104,.08), transparent 50%),
    rgba(240,231,214,.03);
  padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 72px);
  overflow: hidden;
}
.finder::before {
  content: '✦';
  position: absolute;
  top: -56px; right: -8px;
  font-size: 220px;
  line-height: 1;
  color: rgba(189,154,104,.07);
  pointer-events: none;
}
.finder-head { text-align: center; max-width: 560px; margin: 0 auto; }
.finder-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--bone);
  margin-top: 14px;
}
.finder-title em { font-style: italic; font-weight: 400; color: var(--gold-bright); }
.finder-sub {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(240,231,214,.6);
}
.finder-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 36px 0 40px;
}
.finder-step-dot {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(240,231,214,.4);
  border: 1px solid rgba(240,231,214,.22);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.finder-step-dot.on { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.finder-step-dot.done { color: var(--gold); border-color: var(--gold-deep); }
.finder-step-line { width: 36px; height: 1px; background: rgba(240,231,214,.2); }
.finder-q { text-align: center; animation: finderIn .4s var(--ease); }
@keyframes finderIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.finder-q-label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--bone);
}
.finder-opts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.finder-opt {
  border: 1px solid rgba(240,231,214,.25);
  color: var(--cream);
  background: rgba(240,231,214,.03);
  padding: 16px 24px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.finder-opt:hover {
  border-color: var(--gold);
  background: rgba(189,154,104,.12);
  transform: translateY(-3px);
  color: var(--gold-bright);
}
.finder-opt strong { font-size: 13px; font-weight: 600; letter-spacing: .06em; }
.finder-opt small { font-size: 11px; font-weight: 300; color: rgba(240,231,214,.55); }
.finder-back {
  margin-top: 34px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(240,231,214,.5);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.finder-back:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.finder-results { text-align: center; animation: finderIn .45s var(--ease); }
.finder-results-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(240,231,214,.7);
}
.finder-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 30px auto 0;
}
.finder-result {
  position: relative;
  border: 1px solid rgba(240,231,214,.16);
  background: rgba(240,231,214,.04);
  padding: 26px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.finder-result:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(189,154,104,.1);
}
.finder-match {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(217,185,133,.4);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin-bottom: 14px;
}
.finder-result-img {
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 14px 30px -12px rgba(28,23,19,.45);
}
.finder-result-img img { max-width: 70%; max-height: 76%; object-fit: contain; }
.finder-result-name { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--bone); }
.finder-result-family {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.finder-result-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12.5px;
  color: rgba(240,231,214,.6);
  margin-top: 4px;
}
.finder-result-link {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
@media (max-width: 860px) {
  .finder-results-grid { grid-template-columns: 1fr; max-width: 420px; }
  .finder-steps { margin: 28px 0 30px; }
  .finder-step-line { width: 20px; }
  .finder-opt { min-width: calc(50% - 6px); padding: 14px 12px; }
}

/* ════════════════════════════════════════════════════════════════════
   MEJORAS VISUALES 2026-06-09 (2) — calculadora, carrito y
   kit configurador alineados a la estética editorial bone/gold
   ════════════════════════════════════════════════════════════════════ */

/* ── CALCULADORA ─────────────────────────────────────────────────── */
.calc-wrap {
  background:
    radial-gradient(120% 130% at 88% -12%, rgba(189,154,104,.16), transparent 55%),
    var(--cream);
  border: 1px solid var(--hair);
  box-shadow: var(--sh-soft);
}
/* Esquinas editoriales doradas */
.calc-wrap::before,
.calc-wrap::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.calc-wrap::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.calc-wrap::after  { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* Track con relleno dorado hasta el valor elegido (--fill via JS) */
.calc-slider {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg,
    var(--gold-deep) 0%,
    var(--gold) var(--fill, 13%),
    var(--hair-strong) var(--fill, 13%));
}
.calc-slider::-moz-range-progress { background: var(--gold); height: 4px; border-radius: 4px; }
.calc-slider::-webkit-slider-thumb {
  background: var(--gold-deep);
  border: 3px solid var(--bone);
  box-shadow: 0 0 0 1px var(--gold-deep), 0 4px 12px rgba(28,23,19,.28);
}
.calc-slider::-moz-range-thumb {
  background: var(--gold-deep);
  box-shadow: 0 0 0 1px var(--gold-deep), 0 4px 12px rgba(28,23,19,.28);
}
.calc-slider-value { transition: color var(--t-fast); }
.calc-slider-unit { color: var(--gold-deep); }

/* Pop sutil cuando cambia el equipo recomendado */
.calc-result.calc-pop .calc-result-icon img,
.calc-result.calc-pop .calc-result-text {
  animation: calcPop .45s var(--ease-out);
}
@keyframes calcPop {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.calc-result-icon {
  box-shadow: var(--sh-soft);
}
.calc-result-text h4 { font-weight: 300; font-size: 34px; margin-bottom: 10px; }

/* Mapa de equipos por tramo (refactor calculadora 2026-06-09) */
.calc-zones {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.calc-zone {
  border: 1px solid var(--hair-strong);
  background: transparent;
  padding: 10px 4px 9px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.calc-zone:hover { border-color: var(--gold); transform: translateY(-2px); }
.calc-zone strong {
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
}
.calc-zone small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}
.calc-zone.on {
  border-color: var(--gold-deep);
  background: linear-gradient(160deg, #f6eedd, var(--champagne));
  box-shadow: inset 0 0 0 1px var(--gold-deep);
}
.calc-zone.on small { color: var(--gold-deep); }

/* Chip de cobertura en el resultado */
.calc-result-spec {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(154,124,77,.4);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
}
.calc-action { display: contents; }

/* "¿Por qué este equipo?" — la razón del match m² → modelo */
.calc-why {
  margin: 2px 0 18px;
  padding: 12px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(189,154,104,.07);
}
.calc-why-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.calc-result-text .calc-why p {
  font-size: 13px;
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .calc-zones { grid-template-columns: repeat(3, 1fr); }
  .calc-zone { padding: 9px 4px 8px; }
}

/* ── Mercado Pago: elección QR / link en el checkout ─────────────── */
.mp-modo-panel { margin-top: 14px; }
.mp-modo-head {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.mp-modo-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mp-modo-opt {
  position: relative;
  border: 1px solid var(--hair-strong);
  background: var(--cream);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.mp-modo-opt:hover { border-color: var(--gold); transform: translateY(-2px); }
.mp-modo-opt.selected {
  border-color: var(--gold-deep);
  background: linear-gradient(160deg, #f6eedd, var(--cream));
  box-shadow: inset 0 0 0 1px var(--gold-deep);
}
.mp-modo-opt.selected::after {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--bone);
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}
.mp-modo-icon { font-size: 17px; color: var(--gold-deep); line-height: 1; }
.mp-modo-opt strong { font-size: 13.5px; color: var(--ink); }
.mp-modo-opt small { font-size: 11.5px; color: var(--muted); line-height: 1.45; }
@media (max-width: 560px) {
  .mp-modo-opts { grid-template-columns: 1fr; }
}

/* ── CARRITO (panel) ─────────────────────────────────────────────── */
.cart-panel {
  background: #fbf7ee;
  border-radius: 2px;
  border: 1px solid var(--hair-strong);
  box-shadow: 0 30px 70px -28px rgba(28,23,19,.5);
}
.cart-panel::before {
  background: #fbf7ee;
  border-top: 1px solid var(--hair-strong);
  border-left: 1px solid var(--hair-strong);
}
/* Filo dorado superior */
.cart-panel-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.cart-panel-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 50%, var(--gold-deep));
}
.cart-panel-header h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -.01em;
}
.cart-empty { padding: 46px 24px; }
.cart-empty-icon {
  font-size: 30px;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 12px;
}
.cart-empty p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}
.cart-items { max-height: 400px; }
.cart-item { padding: 16px 24px; border-bottom: 1px solid var(--hair); }
.cart-item-img {
  border-radius: 2px;
  border: 1px solid var(--hair);
  background-color: var(--cream);
}
.cart-item-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.cart-item-total {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}
.qty-btn {
  border-radius: 0;
  border-color: var(--hair-strong);
  background: transparent;
}
.cart-item-rm { color: var(--terracotta); }
.cart-item-rm:hover { color: var(--terracotta-deep); }

/* ── Estado de error en campos de formulario (no solo toast) ──────────
   Borde terracota + mensaje inline bajo el input. Pensado para mobile,
   donde el toast queda tapado por el teclado. */
.field-invalid,
input.field-invalid,
select.field-invalid,
textarea.field-invalid {
  border-color: var(--terracotta) !important;
  box-shadow: 0 0 0 2px rgba(181, 86, 59, .14);
}
.field-error-msg {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--terracotta-deep);
  font-weight: 600;
}
.cart-footer {
  background: var(--cream);
  border-top: 1px solid var(--hair-strong);
  padding: 20px 24px;
}
.cart-total-label {
  color: var(--taupe);
  letter-spacing: .24em;
  font-weight: 500;
}
.cart-total-amount {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.cart-total-amount small {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  opacity: 1;
}
.cart-count {
  background: var(--gold-deep);
  color: var(--bone);
}

/* ── KIT CONFIGURADOR (modal) ────────────────────────────────────── */
.kit-modal-backdrop {
  background: rgba(28,23,19,.55);
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
}
.kit-modal-content {
  border-radius: 2px;
  background: #fbf7ee;
}
.kit-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 50%, var(--gold-deep));
  z-index: 3;
}
.kit-modal-header {
  padding: 32px 32px 22px;
  border-bottom: 1px solid var(--hair);
}
.kit-modal-header h3 { font-weight: 400; font-size: 32px; }
.kit-step { border-bottom-color: var(--hair); }
.kit-step-num {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 14px;
  width: 30px;
  height: 30px;
}
.kit-step-content h4 { font-family: var(--serif); font-size: 17px; letter-spacing: -.01em; }
.kit-cant-label {
  border-radius: 0;
  border-color: var(--hair-strong);
  background: transparent;
  padding: 14px 8px;
  position: relative;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.kit-cant-opt:hover .kit-cant-label {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.kit-cant-opt-selected .kit-cant-label,
.kit-cant-opt input:checked + .kit-cant-label {
  border-color: var(--gold-deep);
  background: linear-gradient(160deg, #f6eedd, var(--cream));
  box-shadow: inset 0 0 0 1px var(--gold-deep);
}
/* Tilde dorado en la opción elegida */
.kit-cant-opt-selected .kit-cant-label::after,
.kit-cant-opt input:checked + .kit-cant-label::after {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--bone);
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}
.kit-slot {
  border-radius: 0;
  border-color: var(--hair-strong);
  background: transparent;
}
.kit-slot:hover { background: rgba(189,154,104,.07); }
.kit-slot-filled {
  background: linear-gradient(160deg, #f6eedd, var(--cream));
  border-color: var(--gold);
}
.kit-slot-filled .kit-slot-num { background: var(--gold-deep); color: var(--bone); }
.kit-slot-change {
  border-radius: 0;
  border-color: var(--hair-strong);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 600;
}
.kit-modal-footer {
  background: var(--cream);
  border-top: 1px solid var(--hair-strong);
}
.kit-modal-summary-now { font-weight: 400; font-size: 30px; }
.kit-modal-summary-save { color: var(--green); }
.kit-fragancia-card { border-radius: 2px; }
.kit-fragancia-selector-header {
  background: #fbf7ee;
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid var(--hair);
}
.kit-fragancia-selector-header h5 { font-family: var(--serif); font-size: 17px; }
.kit-fragancia-list { background: #fbf7ee; }
.kit-fragancia-item { border-radius: 0; }


/* ==================================================================
   PROMOS — movido desde el <style> del <body> (Fase 1 refactor 2026-07-19)
   ================================================================== */
#promosWeb { background: var(--cream); }
  .promos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; margin-top: 40px; max-width: 100%; }
  @media (min-width: 900px) { .promos-grid { grid-template-columns: repeat(3, 1fr); } }
  .promo-card { background: var(--bone); border: 1px solid var(--hair-strong); border-radius: 18px; overflow: hidden;
    display: flex; flex-direction: column; box-shadow: var(--sh-soft); transition: transform .3s ease, box-shadow .3s ease; }
  .promo-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); }
  .promo-card-media { position: relative; height: 170px; background: var(--mesh-gold), var(--champagne); display: flex; align-items: center; justify-content: center; }
  .promo-card-media img { width: 100%; height: 100%; object-fit: cover; }
  .promo-card-media .promo-glyph { font-size: 44px; color: var(--gold-deep); opacity: .55; }
  .promo-badge { position: absolute; top: 14px; left: 14px; background: var(--terracotta); color: #fff; font-size: 12px;
    font-weight: 700; letter-spacing: .06em; padding: 5px 12px; border-radius: 99px; text-transform: uppercase; }
  .promo-cupos { position: absolute; top: 14px; right: 14px; background: rgba(28,23,19,.78); color: var(--gold-bright);
    font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 99px; }
  .promo-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .promo-card-body h3 { font-size: 21px; line-height: 1.2; color: var(--ink); margin: 0; }
  .promo-card-body .promo-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
  .promo-incluye { list-style: none; padding: 0; margin: 2px 0 0; display: flex; flex-direction: column; gap: 5px; }
  .promo-incluye li { font-size: 13px; color: var(--taupe); display: flex; gap: 8px; align-items: baseline; }
  .promo-incluye li::before { content: '✦'; color: var(--gold-deep); font-size: 10px; }
  .promo-incluye li.sel { color: var(--green); font-weight: 600; }
  .promo-precios { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 8px; }
  .promo-precio { font-size: 26px; font-weight: 700; color: var(--ink); }
  .promo-precio-orig { font-size: 15px; color: var(--muted); text-decoration: line-through; }
  .promo-add { margin-top: 6px; width: 100%; padding: 13px 18px; border: none; border-radius: 12px; cursor: pointer;
    background: var(--green); color: #fff; font-size: 14.5px; font-weight: 600; letter-spacing: .02em; transition: background .2s ease; }
  .promo-add:hover { background: var(--green-deep); }
  /* Selector de slots (fragancias a elección) */
  .promo-picker-overlay { position: fixed; inset: 0; background: rgba(28,23,19,.55); z-index: 1200; display: flex;
    align-items: center; justify-content: center; padding: 18px; }
  .promo-picker { background: var(--bone); border-radius: 18px; max-width: 460px; width: 100%; max-height: 86vh;
    overflow-y: auto; padding: 26px; box-shadow: var(--sh-panel); }
  .promo-picker h3 { margin: 0 0 4px; font-size: 20px; color: var(--ink); }
  .promo-picker .pp-sub { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
  .promo-picker label { display: block; font-size: 12.5px; font-weight: 600; color: var(--taupe); margin: 12px 0 5px; }
  .promo-picker select { width: 100%; padding: 11px 12px; border: 1px solid var(--hair-strong); border-radius: 10px;
    background: #fff; font-size: 14px; color: var(--ink); }
  .promo-picker .pp-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
  .promo-picker .pp-cancel { background: none; border: 1px solid var(--hair-strong); color: var(--taupe); padding: 11px 18px; border-radius: 10px; cursor: pointer; font-size: 14px; }
  .promo-picker .pp-ok { background: var(--green); border: none; color: #fff; padding: 11px 20px; border-radius: 10px; cursor: pointer; font-size: 14px; font-weight: 600; }
