/* ============ TOKENS ============ */
:root {
  --sage: #3E6B5E;
  --sage-dark: #2E5246;
  --terra: #E08A4B;
  --plum: #6B4E7D;
  --night: #1F2D4D;
  --cream: #F7F4EF;
  --cream-2: #EFEAE1;
  --white: #FFFFFF;
  --ink: #233140;
  --ink-soft: #5B6670;

  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'General Sans', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(31,45,77,.06), 0 8px 24px rgba(31,45,77,.06);
  --shadow-md: 0 12px 40px rgba(31,45,77,.12);
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; margin: 0; color: var(--night); }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; }
h1 em, h2 em, .accent-word { font-style: normal; color: var(--sage); }
p { margin: 0 0 1rem; color: var(--ink-soft); }

.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--sage); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--night); color: var(--cream); }
.btn--primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--night); border-color: rgba(31,45,77,.25); }
.btn--ghost:hover { border-color: var(--night); background: var(--night); color: var(--cream); transform: translateY(-2px); }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,244,239,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31,45,77,.06);
  transition: box-shadow .3s var(--ease);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; color: var(--night); }
.brand__mark { color: var(--sage); flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; letter-spacing: -.02em; }
.brand__accent { color: var(--sage); }
.brand__name--light { color: var(--cream); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--ink); transition: color .2s; }
.nav a:hover { color: var(--sage); }
.nav__cta { padding: .5rem 1.1rem; border-radius: 999px; background: var(--night); color: var(--cream) !important; }
.nav__cta:hover { background: var(--sage); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--night); border-radius: 2px; transition: .3s var(--ease); }
.nav__mobile { display: none; flex-direction: column; padding: 0 clamp(20px,5vw,48px) 1rem; gap: .2rem; background: var(--cream); }
.nav__mobile a { padding: .8rem 0; border-bottom: 1px solid rgba(31,45,77,.08); font-weight: 500; }
.nav__mobile.open { display: flex; }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(247,244,239,.97) 0%, rgba(247,244,239,.92) 32%, rgba(247,244,239,.62) 50%, rgba(247,244,239,0) 66%); }
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: min(82vh, 720px); padding-top: 3rem; padding-bottom: 3rem; }
.hero__content { max-width: 560px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero__lead { font-size: 1.15rem; color: var(--ink); max-width: 480px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ============ TRUST BAR ============ */
.trustbar { background: var(--night); color: var(--cream); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(247,244,239,.12); }
.trustbar__item { background: var(--night); padding: 1.7rem clamp(16px,3vw,28px); text-align: center; }
.trustbar__item strong { display: block; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--cream); margin-bottom: .35rem; line-height: 1.1; }
.trustbar__item span { display: block; font-size: .85rem; color: rgba(247,244,239,.62); line-height: 1.4; max-width: 22ch; margin: 0 auto; }

/* ============ SECTIONS ============ */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.8rem); text-align: center; }
.section__head h2 { margin-bottom: 1rem; }
.section__sub { font-size: 1.08rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.grid-2 h2 { margin-bottom: 1.4rem; }

/* Mission / Vision cards */
.mv-cards { display: grid; gap: 1.2rem; }
.mv-card { padding: 1.8rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); border-left: 4px solid var(--sage); }
.mv-card--vision { border-left-color: var(--terra); }
.mv-card h3 { color: var(--night); margin-bottom: .6rem; }
.mv-card p { margin: 0; font-size: .98rem; }

/* Values */
.section--values { background: var(--sage-dark); color: var(--cream); }
.section--values h2 { color: var(--cream); }
.section--values .eyebrow { color: var(--terra); }
.section__sub--light { color: rgba(247,244,239,.75); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.value { background: rgba(247,244,239,.05); border: 1px solid rgba(247,244,239,.14); border-radius: var(--radius); padding: 2rem 1.8rem; transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease); }
.value:hover { transform: translateY(-5px); background: rgba(247,244,239,.09); border-color: rgba(224,138,75,.5); }
.value__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(224,138,75,.16); color: var(--terra); margin-bottom: 1.2rem; }
.value__icon svg { width: 26px; height: 26px; }
.value h3 { color: var(--cream); font-size: 1.18rem; margin-bottom: .6rem; }
.value p { color: rgba(247,244,239,.72); font-size: .94rem; margin: 0; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service { background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(62,107,94,.1); color: var(--sage); margin-bottom: 1.2rem; }
.service__icon svg { width: 26px; height: 26px; }
.service h3 { margin-bottom: .6rem; color: var(--night); font-size: 1.18rem; }
.service p { margin: 0; font-size: .96rem; }

/* Team / Profiles */
.section--team { background: var(--cream-2); }
.team { display: grid; gap: 2rem; max-width: 1000px; margin: 0 auto; }
.profile { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 300px 1fr; }
.profile__photo { position: relative; background: var(--cream-2); min-height: 100%; }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile__photo--placeholder { display: grid; place-items: center; background: linear-gradient(160deg, var(--night) 0%, var(--sage-dark) 100%); min-height: 320px; }
.profile__photo--placeholder::after { content: attr(data-initials); font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--cream); }
.profile__photo--placeholder img { display: none; }
.profile__body { padding: 2.2rem; }
.profile__body h3 { font-size: 1.45rem; margin-bottom: .4rem; }
.profile__role { font-size: .82rem; font-weight: 600; color: var(--terra); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1rem; line-height: 1.5; }
.profile__body p { font-size: .96rem; }
.profile__subtitle { font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin: 1.6rem 0 .8rem; }

.reviews { display: inline-flex; align-items: center; gap: .7rem; background: rgba(224,138,75,.1); border: 1px solid rgba(224,138,75,.25); border-radius: 999px; padding: .5rem 1rem; margin-bottom: 1.3rem; transition: background .2s; }
.reviews:hover { background: rgba(224,138,75,.18); }
.reviews__stars { color: var(--terra); letter-spacing: 1px; font-size: .95rem; }
.reviews__txt { font-size: .85rem; color: var(--ink); }
.reviews__txt strong { color: var(--night); }

.creds { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .6rem; }
.creds li { display: flex; flex-direction: column; padding: .7rem .9rem; background: var(--cream); border-radius: var(--radius-sm); border-left: 3px solid var(--sage); }
.creds li strong { font-size: .92rem; color: var(--night); }
.creds li span { font-size: .82rem; color: var(--ink-soft); }
.creds__verify { font-size: .82rem; color: var(--ink-soft); }
.creds__verify a { color: var(--sage); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.profile__links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 1.4rem; }
.btn--small { padding: .6rem 1.2rem; font-size: .88rem; background: var(--sage); color: var(--cream); }
.btn--small:hover { background: var(--night); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.link-arrow { color: var(--sage); font-weight: 600; font-size: .92rem; transition: color .2s; }
.link-arrow:hover { color: var(--night); }

.profile__social { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1rem; }
.profile__social a { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 600; color: var(--sage); transition: color .2s; }
.profile__social a:hover { color: var(--night); }
.profile__social svg { width: 18px; height: 18px; flex: none; }

/* Course */
.section--course { background: var(--night); color: var(--cream); }
.section--course h2 { color: var(--cream); }
.course { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.course__content p { color: rgba(247,244,239,.78); font-size: 1.08rem; margin-bottom: 1.4rem; }
.course__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .7rem; }
.course__list li { position: relative; padding-left: 1.8rem; color: var(--cream); font-size: .98rem; }
.course__list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--terra); }
.course__card { background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-md); }
.course__badge { display: inline-block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; background: rgba(247,244,239,.16); color: var(--cream); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1.6rem; }
.course__weeks { display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.course__weeks span { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); padding-bottom: .7rem; border-bottom: 1px solid rgba(247,244,239,.2); }
.course__note { font-size: .9rem; color: rgba(247,244,239,.7); margin: 0; }

/* Contact */
.section--contact { background: var(--cream); }
.contact__actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; max-width: 760px; margin: 0 auto; }
.contact__btn { display: flex; align-items: center; gap: 1.1rem; background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.contact__btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact__btn svg { width: 30px; height: 30px; color: var(--sage); flex: none; }
.contact__btn span { display: flex; flex-direction: column; }
.contact__btn strong { font-size: 1.05rem; color: var(--night); }
.contact__btn small { font-size: .85rem; color: var(--ink-soft); }
.contact__btn--wa { background: var(--sage); }
.contact__btn--wa svg { color: var(--cream); }
.contact__btn--wa strong, .contact__btn--wa small { color: var(--cream); }
.contact__btn--wa small { color: rgba(247,244,239,.82); }

/* ============ FOOTER ============ */
.footer { background: var(--night); color: var(--cream); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,244,239,.14); }
.footer__brand { max-width: 320px; }
.footer__brand p { color: rgba(247,244,239,.6); font-size: .95rem; margin-top: .8rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.footer__nav a { color: rgba(247,244,239,.8); font-size: .95rem; transition: color .2s; }
.footer__nav a:hover { color: var(--terra); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: .85rem; color: rgba(247,244,239,.55); }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav__toggle { display: flex; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile__photo { min-height: 320px; }
  .profile__photo img { max-height: 420px; }
  .course { grid-template-columns: 1fr; }
  .hero__media img { object-position: 72% center; }
  .hero__scrim { background: linear-gradient(180deg, rgba(247,244,239,.55) 0%, rgba(247,244,239,.35) 45%, rgba(247,244,239,.85) 100%); }
  .hero__inner { min-height: auto; padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .hero__content { background: rgba(247,244,239,.82); backdrop-filter: blur(3px); padding: 1.6rem; border-radius: var(--radius); margin: 14rem 0 1rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .contact__actions { grid-template-columns: 1fr; }
  .trustbar__inner { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ AUTOEVALUACIONES ============ */
.section--screen { background: var(--sage-dark); color: var(--cream); }
.section--screen h2 { color: var(--cream); }
.section--screen .eyebrow { color: var(--terra); }
.section--screen .section__sub--light { color: rgba(247,244,239,.78); }

/* Test principal destacado */
.screen-feature {
  display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%; text-align: left; cursor: pointer;
  background: var(--cream); color: var(--ink);
  border: none; border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: clamp(1.6rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.screen-feature:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.screen-feature__text { max-width: 620px; }
.screen-feature__tag {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--terra); margin-bottom: .7rem;
}
.screen-feature__text h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0 0 .6rem; color: var(--night); }
.screen-feature__text p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.screen-feature__cta { font-weight: 600; color: var(--sage); }
.screen-feature:hover .screen-feature__cta { color: var(--sage-dark); }
.screen-feature__badge {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--cream-2); color: var(--sage);
  justify-content: center; text-align: center;
}
.screen-feature__badge svg { width: 40px; height: 40px; }
.screen-feature__badge span { font-size: .72rem; font-weight: 600; color: var(--ink-soft); line-height: 1.3; padding: 0 .8rem; }

/* Grid de tarjetas */
.screens { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: clamp(1rem, 2.5vw, 1.5rem); }
.screen-card {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  cursor: pointer; background: rgba(247,244,239,.06);
  border: 1px solid rgba(247,244,239,.16); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; color: var(--cream);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.screen-card:hover { transform: translateY(-4px); background: rgba(247,244,239,.12); border-color: rgba(247,244,239,.32); }
.screen-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(224,138,75,.18); color: var(--terra); margin-bottom: 1rem;
}
.screen-card__icon svg { width: 24px; height: 24px; }
.screen-card h4 { font-family: var(--font-display); font-size: 1.22rem; margin: 0 0 .5rem; color: var(--cream); }
.screen-card p { font-size: .96rem; color: rgba(247,244,239,.78); margin: 0 0 1rem; flex: 1; }
.screen-card__meta {
  font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(247,244,239,.62);
  padding-top: .8rem; border-top: 1px solid rgba(247,244,239,.14); width: 100%;
}
.screen-disclaimer {
  max-width: 760px; margin: clamp(2rem, 5vw, 3rem) auto 0; text-align: center;
  font-size: .9rem; color: rgba(247,244,239,.7); line-height: 1.6;
}
.screen-disclaimer a { color: var(--terra); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============ MODAL DE AUTOEVALUACIÓN ============ */
.qz { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: clamp(.8rem, 3vw, 2rem); }
.qz[hidden] { display: none; }
.qz__overlay { position: absolute; inset: 0; background: rgba(31,45,77,.55); backdrop-filter: blur(4px); cursor: pointer; }
.qz__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 600px;
  max-height: 92vh; display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: qzIn .4s var(--ease);
}
@keyframes qzIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.qz__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--cream-2); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease);
}
.qz__close:hover { background: var(--terra); color: var(--white); }
.qz__close svg { width: 18px; height: 18px; }
.qz__progress { height: 5px; background: var(--cream-2); flex: 0 0 auto; }
.qz__progress-bar { display: block; height: 100%; width: 0%; background: var(--terra); transition: width .4s var(--ease); }
.qz__body { padding: clamp(1.5rem, 4vw, 2.6rem); overflow-y: auto; }

.qz__eyebrow { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--terra); margin-bottom: .5rem; }
.qz__title { font-family: var(--font-display); font-size: clamp(1.4rem, 3.5vw, 1.85rem); margin: 0 0 .8rem; color: var(--night); }
.qz__intro { color: var(--ink-soft); margin: 0 0 1.4rem; font-size: 1rem; }
.qz__section {
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--sage); background: rgba(62,107,94,.08); border-radius: var(--radius-sm);
  padding: .6rem .9rem; margin-bottom: 1.1rem;
}
.qz__qmeta { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .6rem; }
.qz__question { font-family: var(--font-display); font-size: clamp(1.15rem, 3vw, 1.4rem); line-height: 1.35; margin: 0 0 1.3rem; color: var(--ink); }
.qz__opts { display: flex; flex-direction: column; gap: .6rem; }
.qz__opt {
  display: flex; align-items: center; gap: .85rem; width: 100%; text-align: left; cursor: pointer;
  background: var(--cream); border: 1.5px solid var(--cream-2); border-radius: var(--radius-sm);
  padding: .95rem 1.1rem; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .15s var(--ease);
}
.qz__opt:hover { border-color: var(--sage); background: var(--white); transform: translateX(2px); }
.qz__radio { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--ink-soft); position: relative; transition: border-color .2s var(--ease); }
.qz__opt:hover .qz__radio { border-color: var(--sage); }
.qz__opt.is-selected { border-color: var(--sage); background: rgba(62,107,94,.08); }
.qz__opt.is-selected .qz__radio { border-color: var(--sage); }
.qz__opt.is-selected .qz__radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--sage); }
.qz__nav { margin-top: 1.4rem; min-height: 24px; }
.qz__back { background: none; border: none; cursor: pointer; color: var(--ink-soft); font-family: var(--font-body); font-size: .95rem; font-weight: 600; padding: 0; }
.qz__back:hover { color: var(--sage); }
.qz__scalenote { margin-top: 1.4rem; font-size: .82rem; color: var(--ink-soft); border-top: 1px solid var(--cream-2); padding-top: 1rem; }

/* Resultado */
.qz__result { animation: qzIn .4s var(--ease); }
.qz__result-tag { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.qz__result-level { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 .7rem; }
.qz--good .qz__result-level { color: var(--sage); }
.qz--mid .qz__result-level { color: var(--terra); }
.qz--alert .qz__result-level { color: var(--plum); }
.qz__result-summary { color: var(--ink-soft); font-size: 1.02rem; margin: 0 0 1.2rem; }
.qz__risk { background: rgba(107,78,125,.1); border-left: 3px solid var(--plum); border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-size: .95rem; color: var(--ink); margin-bottom: 1.4rem; }
.qz__tips { margin-bottom: 1.6rem; }
.qz__tips h4 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 .7rem; color: var(--ink); }
.qz__tips ul { margin: 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: .5rem; }
.qz__tips li { color: var(--ink-soft); font-size: .98rem; line-height: 1.5; }

/* Captura de email */
.qz__capture { background: var(--cream); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 1.4rem; }
.qz__capture h4 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 .5rem; color: var(--night); }
.qz__capture > p { font-size: .94rem; color: var(--ink-soft); margin: 0 0 1rem; }
.qz__form { display: flex; gap: .6rem; flex-wrap: wrap; }
.qz__form input { flex: 1 1 200px; padding: .85rem 1rem; border: 1.5px solid var(--cream-2); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--white); }
.qz__form input:focus { outline: none; border-color: var(--sage); }
.qz__form input.is-error { border-color: var(--plum); background: rgba(107,78,125,.06); }
.qz__form .btn--primary { flex: 0 0 auto; }
.qz__formnote { font-size: .8rem; color: var(--ink-soft); margin: .9rem 0 0; line-height: 1.5; }
.qz__done { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.qz__restart { background: none; border: 1.5px solid var(--cream-2); border-radius: 100px; cursor: pointer; padding: .7rem 1.3rem; font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--ink-soft); transition: border-color .2s var(--ease), color .2s var(--ease); }
.qz__restart:hover { border-color: var(--sage); color: var(--sage); }

/* Gracias */
.qz__thanks { text-align: center; padding: .5rem 0; }
.qz__check { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: rgba(62,107,94,.12); color: var(--sage); margin-bottom: .8rem; }
.qz__check svg { width: 28px; height: 28px; }
.qz__thanks h4 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 .5rem; color: var(--night); }
.qz__thanks p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

@media (max-width: 620px) {
  .screen-feature { flex-direction: column; align-items: flex-start; }
  .screen-feature__badge { width: 100%; height: auto; flex-direction: row; border-radius: var(--radius-sm); padding: .9rem 1.2rem; justify-content: flex-start; }
  .screen-feature__badge svg { width: 28px; height: 28px; }
  .screen-feature__badge span { padding: 0; }
}

/* Footer logo — variante con "Be" en blanco sobre el fondo oscuro */
.footer__logo { display: inline-flex; align-items: center; }
.footer__logo img { display: block; height: 46px; width: auto; }
.brand__logo { display: block; height: 42px; width: auto; }

/* ===== Botón Recursos de salud mental perinatal ===== */
.btn--perinatal {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 1rem;
  background: var(--plum); color: #fff;
  border: none; padding: .72rem 1.15rem;
  border-radius: var(--radius-sm); font-weight: 600; font-size: .94rem;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn--perinatal svg { width: 18px; height: 18px; flex: none; }
.btn--perinatal:hover { background: #5a4069; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== Botón Ver el curso (Hackea tu TDAH) ===== */
.btn--course {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.4rem;
  background: var(--terra); color: #fff;
  border: none; padding: .95rem 1.7rem;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn--course svg { width: 20px; height: 20px; flex: none; transition: transform .2s var(--ease); }
.btn--course:hover { background: #cf7a3c; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(224,138,75,.32); }
.btn--course:hover svg { transform: translateX(4px); }

/* ===== Tarjeta "El curso incluye" ===== */
.course__card-eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1.3rem;
}
.course__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.course__features li { display: flex; align-items: flex-start; gap: .85rem; }
.course__features li svg { width: 24px; height: 24px; flex: none; color: var(--terra); margin-top: 2px; }
.course__features li div { display: flex; flex-direction: column; gap: .2rem; }
.course__features li strong { font-family: var(--font-display); font-size: 1.05rem; color: #fff; font-weight: 600; }
.course__features li span { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.45; }

/* ============ SERVICIOS — enfoque integral ============ */
#servicios .section__head { max-width: 760px; }
.service-banner {
  display: flex; align-items: flex-start; gap: clamp(1.1rem, 3vw, 1.8rem);
  background: var(--cream-2); border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: clamp(1.4rem, 3.5vw, 2rem);
  margin: 0 auto clamp(2rem, 4vw, 2.8rem); max-width: 920px;
  box-shadow: var(--shadow-sm);
}
.service-banner__icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--white); color: var(--sage);
}
.service-banner__icon svg { width: 30px; height: 30px; }
.service-banner__text h3 { font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.45rem); margin: 0 0 .5rem; color: var(--night); }
.service-banner__text p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
@media (max-width: 560px) { .service-banner { flex-direction: column; } }
