/* ============================================================
   Fotografía y Mindfulness — landing
   Paleta: bosque profundo + crema + oro suave
   ============================================================ */

:root {
  --green-900: #0e1a14;
  --green-800: #14241c;
  --green-700: #1c3327;
  --green-600: #2a4a38;
  --cream:     #f4efe6;
  --cream-dim: #d8d0c2;
  --gold:      #c4a361;
  --gold-soft: #d9bd86;
  --ink:       #11150f;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--sans);
  background: var(--green-900);
  color: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; }
em { font-style: italic; }

img { display: block; max-width: 100%; }

/* ---------- helpers ---------- */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.kicker--light { color: var(--gold-soft); }

.hl { color: var(--gold-soft); font-style: italic; }

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.1rem; }
.section-head__sub { color: var(--cream-dim); font-size: 1.08rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 30px -10px rgba(196,163,97,.6);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(196,163,97,.75); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,230,.35);
}
.btn--ghost:hover { background: rgba(244,239,230,.08); border-color: var(--cream); transform: translateY(-3px); }
.btn--lg { padding: 1.05rem 2.4rem; font-size: 1rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(14,26,20,.82);
  backdrop-filter: blur(12px);
  padding-top: .7rem; padding-bottom: .7rem;
  border-bottom: 1px solid rgba(244,239,230,.07);
}
.nav__brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--cream); }
.nav__brand-mark { color: var(--gold); font-size: 1.1rem; }
.nav__brand-text { font-family: var(--serif); font-size: 1.25rem; letter-spacing: .01em; }
.nav__brand-text em { color: var(--gold); font-style: italic; }
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  color: var(--cream-dim); text-decoration: none; font-size: .88rem; letter-spacing: .02em;
  position: relative; transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: .55rem 1.3rem; font-size: .85rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem 4rem; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background-size: cover; background-position: center;
  transform: scale(1.06); pointer-events: none;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 50% 52%, rgba(14,26,20,.7) 0%, rgba(14,26,20,.35) 45%, transparent 75%),
    radial-gradient(120% 95% at 50% 30%, transparent 0%, rgba(14,26,20,.4) 55%, rgba(14,26,20,.95) 100%),
    linear-gradient(to bottom, rgba(14,26,20,.55), rgba(14,26,20,.45) 35%, rgba(14,26,20,.7));
}
.hero__content { position: relative; z-index: 2; max-width: 860px; text-shadow: 0 2px 24px rgba(0,0,0,.55); }
.hero__eyebrow {
  font-size: .8rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.6rem;
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 500; letter-spacing: .01em;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero__title .amp { color: var(--gold); font-style: italic; font-weight: 400; }
.hero__sub {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--cream); margin-top: .4rem; opacity: .92;
}
.hero__tagline {
  margin-top: 1.8rem; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--cream-dim);
  font-weight: 300; letter-spacing: .01em;
}
.hero__actions { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1px solid rgba(244,239,230,.4); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero__scroll-dot { width: 4px; height: 8px; border-radius: 2px; background: var(--gold-soft); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- manifesto ---------- */
.manifesto {
  background: linear-gradient(to bottom, var(--green-900), var(--green-800));
  padding: clamp(5rem, 12vw, 9rem) 1.5rem;
}
.manifesto__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.manifesto .lead {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.3;
  color: var(--cream); margin-bottom: 2rem;
}
.manifesto .lead em { color: var(--gold-soft); }
.manifesto p { color: var(--cream-dim); font-size: 1.1rem; margin-bottom: 1.4rem; }
.manifesto strong { color: var(--cream); font-weight: 500; }
.manifesto__close { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); margin-top: 2rem; }

/* ---------- reto / pillars ---------- */
.reto { padding: clamp(5rem, 11vw, 8rem) clamp(1.2rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.pillar {
  background: var(--green-800); border: 1px solid rgba(244,239,230,.07);
  border-radius: 18px; padding: 2.2rem 1.7rem; transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(196,163,97,.4); background: var(--green-700); }
.pillar__num { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: .8rem; opacity: .8; }
.pillar h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.pillar p { color: var(--cream-dim); font-size: .98rem; }

/* ---------- día 1 ---------- */
.dia1 { position: relative; padding: clamp(5rem, 12vw, 9rem) 1.5rem; overflow: hidden; text-align: center; }
.dia1__bg { position: absolute; top: -18%; left: 0; right: 0; height: 136%; background-size: cover; background-position: center; will-change: transform; }
.dia1__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,26,20,.78), rgba(14,26,20,.9)); }
.dia1__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.dia1 h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: 1.2rem; }
.dia1__intro { color: var(--cream-dim); font-size: 1.1rem; margin-bottom: 2.4rem; }

.player { background: rgba(244,239,230,.06); border: 1px solid rgba(244,239,230,.12); border-radius: 18px; padding: 1.6rem; backdrop-filter: blur(6px); }
.player audio { width: 100%; }
.player__note { margin-top: .9rem; font-size: .82rem; color: var(--cream-dim); letter-spacing: .04em; }

.transcript-toggle {
  margin-top: 1.8rem; background: none; border: none; color: var(--gold-soft);
  font-family: var(--sans); font-size: .9rem; letter-spacing: .03em; cursor: pointer;
  border-bottom: 1px solid rgba(217,189,134,.4); padding-bottom: 3px; transition: color .3s var(--ease);
}
.transcript-toggle:hover { color: var(--cream); }
.transcript {
  display: grid; grid-template-rows: 0fr; opacity: 0; margin-top: 0;
  text-align: left; color: var(--cream-dim); font-size: 1rem;
  transition: grid-template-rows .55s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease);
}
.transcript__inner { overflow: hidden; min-height: 0; }
.transcript.is-open { grid-template-rows: 1fr; opacity: 1; margin-top: 1.8rem; }
.transcript p { margin-bottom: 1.1rem; }
.transcript p:last-child { margin-bottom: 0; }
.transcript em { color: var(--cream); }

/* ---------- incluye / features ---------- */
.incluye { padding: clamp(5rem, 11vw, 8rem) clamp(1.2rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feature {
  background: var(--green-800); border: 1px solid rgba(244,239,230,.07); border-radius: 18px;
  padding: 2rem 1.8rem; transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.feature:hover { transform: translateY(-5px); border-color: rgba(196,163,97,.35); }
.feature__ic { display: block; margin-bottom: 1.1rem; color: var(--gold); }
.feature__ic svg { width: 34px; height: 34px; }
.feature h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.feature p { color: var(--cream-dim); font-size: .96rem; }

/* ---------- autor ---------- */
.autor {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(5rem, 11vw, 8rem) clamp(1.2rem, 5vw, 3rem);
}
.autor__media { position: relative; }
.autor__media-inner { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px -25px rgba(0,0,0,.7); }
.autor__media-inner img { position: relative; top: -8%; width: 100%; height: 116%; object-fit: cover; display: block; will-change: transform; }
.autor__media::after {
  content: ""; position: absolute; inset: -10px; border: 1px solid rgba(196,163,97,.45);
  border-radius: 26px; z-index: -1; pointer-events: none;
}
.autor__text h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.2rem; }
.autor__text p { color: var(--cream-dim); font-size: 1.06rem; margin-bottom: 1.2rem; }
.autor__text a { color: var(--gold-soft); text-decoration: none; border-bottom: 1px solid rgba(217,189,134,.4); transition: color .3s var(--ease); }
.autor__text a:hover { color: var(--cream); }

/* ---------- precio ---------- */
.precio { padding: clamp(5rem, 11vw, 8rem) 1.5rem; display: flex; justify-content: center; }
.precio__card {
  position: relative; max-width: 620px; width: 100%; text-align: center;
  background: linear-gradient(160deg, var(--green-700), var(--green-800));
  border: 1px solid rgba(196,163,97,.25); border-radius: 26px;
  padding: clamp(2.5rem, 6vw, 4rem); box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.precio__card h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 1rem; }
.precio__lead { color: var(--cream-dim); margin-bottom: 2rem; }
.precio__badge {
  display: inline-block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: .35rem .9rem; border-radius: 999px; font-weight: 600; margin-bottom: 1.4rem;
}
.precio__price { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.8rem; }
.precio__old { font-size: 1.2rem; color: var(--cream-dim); text-decoration: line-through; opacity: .7; margin-bottom: .2rem; }
.precio__amount { font-family: var(--serif); font-size: 3.6rem; color: var(--gold); line-height: 1; }
.precio__cur { font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cream-dim); margin-top: .4rem; }
.precio__cuotas { font-size: .95rem; color: var(--cream); margin-top: .7rem; }
.precio__pay { font-size: .82rem; color: var(--cream-dim); margin-top: .9rem; }
.precio__list { list-style: none; text-align: left; max-width: 380px; margin: 2.2rem auto 0; display: grid; gap: .8rem; }
.precio__list li { position: relative; padding-left: 1.8rem; color: var(--cream-dim); font-size: .98rem; }
.precio__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---------- footer ---------- */
.footer {
  text-align: center; padding: 4rem 1.5rem 3rem;
  border-top: 1px solid rgba(244,239,230,.08); background: var(--green-900);
}
.footer__brand { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .8rem; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 1.2rem; margin-bottom: 1.6rem; }
.footer__copy { color: var(--cream-dim); font-size: .82rem; opacity: .7; }
.footer__credit { color: var(--cream-dim); font-size: .72rem; opacity: .5; margin-top: .5rem; }

/* ---------- reveal / entrada ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .95s var(--ease), transform .95s var(--ease); will-change: opacity, transform; }
.reveal--left  { transform: translateX(-46px); }
.reveal--right { transform: translateX(46px); }
.reveal--scale { transform: scale(.93); }
.reveal.is-visible { opacity: 1; transform: none; }

/* stagger: las cards de cada grilla entran en cascada */
.pillars > .reveal:nth-child(2),
.features > .reveal:nth-child(2) { transition-delay: .08s; }
.pillars > .reveal:nth-child(3),
.features > .reveal:nth-child(3) { transition-delay: .16s; }
.pillars > .reveal:nth-child(4),
.features > .reveal:nth-child(4) { transition-delay: .24s; }
.features > .reveal:nth-child(5) { transition-delay: .32s; }
.features > .reveal:nth-child(6) { transition-delay: .40s; }

/* ---------- Hook / problema ---------- */
.hook { padding: clamp(4rem, 10vw, 7rem) 1.5rem 0; }
.hook__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.hook__inner p { color: var(--cream-dim); font-size: 1.15rem; }
.hook__pivot { margin-top: 1.5rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3.2vw, 2.1rem); color: var(--gold-soft); }

/* ---------- nota de facts ---------- */
.facts__note { max-width: 640px; margin: 2.2rem auto 0; text-align: center; color: var(--cream-dim); font-size: .98rem; }

/* ---------- Regalo ---------- */
.precio__gift { margin-top: 1.4rem; }
.precio__gift a { color: var(--gold-soft); text-decoration: none; font-size: .92rem; letter-spacing: .02em; transition: color .3s var(--ease); }
.precio__gift a:hover { color: var(--cream); }
.gift { padding: 0 1.5rem clamp(4rem, 10vw, 7rem); display: flex; justify-content: center; }
.gift__card { max-width: 620px; width: 100%; text-align: center; background: var(--green-800); border: 1px solid rgba(196,163,97,.22); border-radius: 24px; padding: clamp(2.2rem, 5vw, 3.4rem); }
.gift__card h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.gift__lead { color: var(--cream-dim); margin-bottom: 1.8rem; }
.gift__lead strong { color: var(--cream); font-weight: 500; }
.gift__note { font-size: .82rem; color: var(--cream-dim); margin-top: 1.1rem; }

/* ---------- No es / Es ---------- */
.notis { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 5vw, 3rem) 0; }
.notis__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 900px; margin: 0 auto; }
.notis__col { background: var(--green-800); border: 1px solid rgba(244,239,230,.07); border-radius: 18px; padding: 2rem 1.9rem; }
.notis__col--si { border-color: rgba(196,163,97,.35); background: linear-gradient(160deg, var(--green-700), var(--green-800)); }
.notis__label { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 1.1rem; }
.notis__col--no .notis__label { color: var(--cream-dim); }
.notis__col--si .notis__label { color: var(--gold); }
.notis__col ul { list-style: none; display: grid; gap: .85rem; }
.notis__col li { position: relative; padding-left: 1.7rem; color: var(--cream-dim); font-size: .98rem; }
.notis__col--no li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); opacity: .55; }
.notis__col--si li { color: var(--cream); }
.notis__col--si li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Cómo funciona / facts ---------- */
.facts { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.facts__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.facts__item { text-align: center; padding: 1.8rem 1rem; border: 1px solid rgba(244,239,230,.08); border-radius: 16px; background: var(--green-800); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.facts__item:hover { border-color: rgba(196,163,97,.35); transform: translateY(-4px); }
.facts__big { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 2.8rem); color: var(--gold); line-height: 1; display: block; margin-bottom: .5rem; }
.facts__lbl { color: var(--cream-dim); font-size: .92rem; }

/* ---------- ¿Es para vos? ---------- */
.foryou { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.foryou__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.foryou__card { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--green-800); border: 1px solid rgba(244,239,230,.07); border-radius: 16px; padding: 1.7rem 1.8rem; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.foryou__card:hover { border-color: rgba(196,163,97,.35); transform: translateY(-4px); }
.foryou__n { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); flex: none; opacity: .85; line-height: 1.4; }
.foryou__card p { color: var(--cream-dim); font-size: .98rem; }
.foryou__card strong { display: block; margin-bottom: .25rem; color: var(--cream); font-weight: 500; font-family: var(--serif); font-size: 1.2rem; }

/* ---------- Testimonios ---------- */
.testimonios { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem); }
.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.testi {
  position: relative;
  margin: 0;
  padding: 2.1rem 1.8rem 1.6rem;
  background: linear-gradient(160deg, var(--green-700), var(--green-800));
  border: 1px solid rgba(196, 163, 97, 0.18);
  border-radius: 20px;
  display: flex; flex-direction: column;
}
.testi::before {
  content: "“";
  position: absolute; top: .3rem; left: 1.3rem;
  font-family: var(--serif);
  font-size: 4.2rem; line-height: 1;
  color: var(--gold);
  opacity: .35;
}
.testi__quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--cream);
  margin: 0 0 1.4rem;
  font-style: italic;
  quotes: none;
  position: relative;
}
.testi__author {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  display: flex; flex-direction: column; gap: .15rem;
}
.testi__name { color: var(--gold-soft); font-weight: 500; font-size: .95rem; letter-spacing: .02em; }
.testi__loc  { color: var(--cream-dim); font-size: .82rem; }

@media (max-width: 940px) {
  .testimonios__grid { grid-template-columns: 1fr; gap: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ---------- Frase firma ---------- */
.quoteband { padding: clamp(5rem, 12vw, 8rem) 1.5rem; text-align: center; background: radial-gradient(110% 80% at 50% 0%, var(--green-700), var(--green-900) 70%); }
.quoteband__inner { max-width: 780px; margin: 0 auto; }
.quoteband q { font-family: var(--serif); font-size: clamp(1.7rem, 4.2vw, 2.9rem); line-height: 1.25; color: var(--cream); quotes: none; }
.quoteband q::before, .quoteband q::after { content: ""; }
.quoteband__em { display: block; margin-top: 1.5rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2.2vw, 1.45rem); color: var(--gold-soft); }

/* ---------- Día 1: momentos ---------- */
.dia1__momentos { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin: 0 0 2.2rem; padding: 0; list-style: none; }
.dia1__momentos li { font-size: .82rem; letter-spacing: .03em; color: var(--cream-dim); border: 1px solid rgba(244,239,230,.18); border-radius: 999px; padding: .45rem 1.05rem; }
.dia1__momentos b { color: var(--gold-soft); font-weight: 500; margin-right: .35rem; }

@media (max-width: 760px) {
  .notis__grid { grid-template-columns: 1fr; }
  .facts__row { grid-template-columns: repeat(2, 1fr); }
  .foryou__grid { grid-template-columns: 1fr; }
}

/* ---------- nav: botón hamburger (mobile) ---------- */
.nav__burger {
  display: none;
  background: rgba(14, 26, 20, 0.55);
  border: 1px solid rgba(196, 163, 97, 0.35);
  cursor: pointer;
  padding: 10px; width: 44px; height: 44px;
  border-radius: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
  z-index: 60;
  flex-shrink: 0;
}
.nav__burger span {
  display: block; height: 2px; width: 22px;
  background: var(--gold-soft); border-radius: 2px;
  transition: transform .25s, opacity .2s, background .2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__cta-mobile { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .autor { grid-template-columns: 1fr; }
  .autor__media { max-width: 420px; margin: 0 auto; }

  /* Menú colapsable en mobile */
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(8, 16, 12, 0.96);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196,163,97,.18);
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav__links.is-open { max-height: 480px; padding: .6rem 0 1rem; }
  .nav__links a {
    padding: .9rem 1.4rem; font-size: 1rem;
    border-bottom: 1px solid rgba(244,239,230,.06);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta-mobile {
    display: block;
    margin: .8rem 1.4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--green-900) !important;
    border-radius: 999px;
    padding: .8rem 1rem !important;
    font-weight: 500;
  }
  .nav__cta { display: none; } /* CTA desktop oculto en mobile */

  /* Bullets de "No es / Es" — más aire del borde del card y mejor alineación visual */
  .notis__col { padding: 1.6rem 1.4rem; }
  .notis__col li { padding-left: 1.5rem; }
}
@media (max-width: 560px) {
  .pillars, .features { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
  .hero__scroll-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Modal de email (reemplaza window.prompt) ---------- */
.modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 16, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFade .25s ease-out;
}
.modal__panel {
  position: relative;
  width: min(92vw, 460px);
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: var(--cream);
  border: 1px solid rgba(196, 163, 97, 0.28);
  border-radius: 20px;
  padding: 32px 28px 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(217, 189, 134, .08) inset;
  animation: modalRise .35s cubic-bezier(.2,.8,.2,1);
}
.modal__close {
  position: absolute; top: 10px; right: 14px;
  background: transparent; border: 0;
  color: var(--cream-dim);
  font-size: 28px; line-height: 1;
  cursor: pointer; padding: 4px 8px;
  transition: color .2s;
}
.modal__close:hover { color: var(--gold-soft); }
.modal__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--gold-soft);
  letter-spacing: .3px;
}
.modal__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--cream-dim);
  margin: 0 0 22px;
}
.modal__form { display: flex; flex-direction: column; gap: 6px; }
.modal__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.modal__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(244, 239, 230, 0.05);
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 12px;
  color: var(--cream);
  font-family: inherit;
  font-size: 16px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.modal__input::placeholder { color: rgba(216, 208, 194, .45); }
.modal__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(244, 239, 230, 0.08);
  box-shadow: 0 0 0 3px rgba(196, 163, 97, .18);
}
.modal__input.is-invalid {
  border-color: #e07b6e;
  box-shadow: 0 0 0 3px rgba(224, 123, 110, .18);
}
.modal__error {
  margin: 6px 2px 0;
  font-size: 13px;
  color: #f0a99e;
}
.modal__actions {
  display: flex; gap: 10px; justify-content: flex-end;
  margin-top: 20px;
}
.modal__btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, opacity .2s;
}
.modal__btn:disabled { opacity: .55; cursor: wait; }
.modal__btn--ghost {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid rgba(244, 239, 230, 0.22);
}
.modal__btn--ghost:hover { color: var(--cream); border-color: rgba(244, 239, 230, 0.4); }
.modal__btn--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--green-900);
}
.modal__btn--primary:hover { transform: translateY(-1px); }
.modal__btn--primary:active { transform: translateY(0); }

@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .modal__backdrop, .modal__panel { animation: none; }
}
body.modal-open { overflow: hidden; }
