/* =============================================================
   ANDREA LUCERO · Versión de ventas
   Identidad Editorial Dark Warm + estructura de conversión.
   Mobile first.
   ============================================================= */

/* 1. Tokens */
:root {
  --bg:        #232325;   /* base background */
  --bg-2:      #26262b;   /* alternating sections — barely lifted for rhythm */
  --bg-3:      #2a2a2c;   /* cards — barely lifted so they read */
  --bg-4:      #313133;

  --cream:     #F5F0E8;
  --cream-2:   #d9d1c2;
  --cream-3:   #9b9180;

  --accent:    #DFC98C;   /* dorado vainilla (más claro) */
  --accent-2:  #cdb878;
  --accent-soft: rgba(223,201,140,.14);

  --line:      rgba(245,240,232,.10);
  --line-2:    rgba(245,240,232,.06);

  /* modern geometric display (Poppins) + clean body sans (Inter) */
  --serif: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --script: "Poppins", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --wrap: 1140px;
  --measure: 60ch;
  --gut: clamp(1.25rem, 5vw, 2.5rem);
}

/* 2. Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.7;
  color: var(--cream); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip; overscroll-behavior-y: none;
}
/* film grain sutil sobre toda la página — da textura y profundidad al fondo */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 70; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* 3. Utilities */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.measure { max-width: var(--measure); margin-inline: auto; }
.center { text-align: center; }
.left { text-align: left; }
.hl { color: var(--accent); }
.strike-soft { color: var(--cream-3); text-decoration: line-through; text-decoration-color: var(--cream-3); }

.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--cream); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 500; }
.skip-link:focus { top: 1rem; }

.eyebrow, .kicker {
  font-size: .74rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 1.1rem;
}
.kicker { color: var(--cream-3); }

/* 4. Reveal (defensive; inline styles in JS guarantee visibility) */
.js .reveal { opacity: 0; transform: translateY(24px); }
.reveal { transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); will-change: opacity, transform; }
.js .reveal.is-visible, .reveal.is-visible { opacity: 1; transform: none; }

/* 5. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  text-wrap: balance; line-height: 1.15;
  padding: 1.05em 2em; border-radius: 100px;
  transition: transform .4s var(--ease-out), background-color .4s var(--ease-out), color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.btn span { transition: transform .4s var(--ease-out); }
.btn-primary { background: var(--accent); color: #1a1407; box-shadow: 0 14px 36px -14px rgba(223,201,140,.6); }
@media (hover: hover) {
  .btn-primary:hover { background: var(--cream); color: var(--bg); transform: translateY(-2px); }
  .btn-primary:hover span { transform: translateX(4px); }
}
.btn-cta { font-size: .82rem; padding: 1.1em 2.2em; }
.btn-block { display: flex; width: 100%; padding-block: 1.2em; }
.btn-ghost { background: var(--accent); color: #1a1407; border: 1.5px solid var(--accent); box-shadow: none; }
@media (hover: hover) {
  .btn-ghost:hover { background: #1a1407; color: var(--accent); transform: translateY(-2px); }
  .btn-ghost:hover span { transform: translateX(4px); }
}
/* Desplegable de financiación (cuotas SeQura) — nota secundaria, discreta, bajo el precio */
.finance-details { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(223,201,140,.2); }
.finance-summary {
  display: inline-flex; align-items: center; gap: .5em; cursor: pointer;
  list-style: none; font-family: var(--sans); font-weight: 500; font-size: .82rem;
  color: var(--cream-3); border-bottom: 1px dashed rgba(223,201,140,.4); padding-bottom: .2em;
  transition: color .3s var(--ease-out);
}
@media (hover: hover) { .finance-summary:hover { color: var(--accent); } }
.finance-summary::-webkit-details-marker { display: none; }
.finance-toggle { display: inline-flex; width: 1.3em; height: 1.3em; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--accent); font-size: .85em; line-height: 1; transition: transform .3s var(--ease-out); }
.finance-details[open] .finance-toggle { transform: rotate(45deg); }
.finance-content {
  display: none;
  margin-top: 1rem; padding: 1.1rem 1.3rem; background: var(--bg-3);
  border: 1.5px solid rgba(223,201,140,.4); border-radius: 12px;
  gap: .5rem; max-width: 340px;
}
.finance-details[open] .finance-content { display: grid; }
.finance-cuota { font-size: 1rem; color: var(--cream); margin: 0; }
.finance-cuota .hl { font-weight: 700; }
.finance-note { font-size: .82rem; color: var(--cream-3); margin: 0 0 .3rem; }
.finance-cta-text { font-size: .88rem; color: var(--cream-2); line-height: 1.5; margin: 0; }
.finance-cta-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
@media (hover: hover) { .finance-cta-text a:hover { color: var(--cream); } }

/* 6. Nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background-color .5s var(--ease-out), backdrop-filter .5s var(--ease-out), border-color .5s var(--ease-out); border-bottom: 1px solid transparent; }
.nav-inner { width: 100%; max-width: var(--wrap); margin-inline: auto; padding: .85rem var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 46px; width: auto; display: block; }
@media (min-width: 720px) { .nav-logo { height: 52px; } }
.nav-cta { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .65em 1.2em; border: 1px solid var(--accent); border-radius: 100px; color: var(--accent); transition: background-color .4s var(--ease-out), color .4s var(--ease-out); white-space: nowrap; }
@media (hover: hover) { .nav-cta:hover { background: var(--accent); color: #1a1407; } }
.nav.is-scrolled { background: rgba(35,35,37,.88); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); }

/* 7. Hero */
.hero { position: relative; overflow: hidden; background: var(--bg); text-align: left; }
/* mobile: push the banner below the fixed nav so the button doesn't overlap it */
@media (max-width: 899px) { .hero { padding-top: 80px; } }
.hero-bg { position: absolute; inset: -10% 0 0 0; z-index: 0; pointer-events: none; }
.hero-halo { position: absolute; inset: -30% -20% auto -20%; height: 95%; background: radial-gradient(55% 50% at 50% 12%, rgba(223,201,140,.22), transparent 70%); filter: blur(55px); }
.hero-grain { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 60%, var(--bg) 100%); }
.hero-inner { position: relative; z-index: 2; }
.hero-title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.5rem, 8.5vw, 4.4rem); line-height: 1.04; letter-spacing: -0.03em; max-width: 17ch; margin-inline: 0; }
.hero-title .hl { font-weight: 800; }
.hero-sub { font-family: var(--sans); font-weight: 400; font-size: clamp(1.1rem, 3.6vw, 1.4rem); line-height: 1.45; color: var(--cream-2); margin-top: 1rem; max-width: 40ch; margin-inline: 0; }
.hero-lead { margin-top: 1.2rem; max-width: 50ch; margin-inline: 0; color: var(--cream-2); font-size: 1rem; }
.hero-lead strong { color: var(--cream); font-weight: 600; }
.btn-cta { margin-top: 2.2rem; }
.hero-microtrust { margin-top: 1.3rem; font-size: .82rem; letter-spacing: .04em; color: var(--cream-3); }
.hero-scroll { display: none; }
.hero-scroll-x { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2; width: 1px; height: 46px; overflow: hidden; background: var(--line); }
.hero-scroll span { position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--accent); animation: scrollCue 2.4s var(--ease-soft) infinite; }
@keyframes scrollCue { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(300%); } }

/* 7b. Photo "fundido" — the fade + dark vignette is baked into the WebP itself
   (so it blends on any dark section). Keep only a light grade here. */
.img-fade { filter: saturate(1.03) contrast(1.02); }
/* transparent cut-out portraits that float on the page */
.img-cut { display: block; width: 100%; height: auto; filter: drop-shadow(0 26px 44px rgba(0,0,0,.5)); }
/* framed photo (rounded rectangle) — for images shown with their background */
.framed { border-radius: 16px; overflow: hidden; border: 1px solid rgba(223,201,140,.3); box-shadow: 0 34px 80px -36px rgba(0,0,0,.85); display: block; }
.framed img { width: 100%; height: auto; display: block; }

/* Hero: full-bleed banner with the headline over its empty left space */
.hero-banner { width: 100%; margin: 0; line-height: 0; position: relative; z-index: 1; }
.hero-banner img { width: 100%; height: auto; display: block; }
.hero-content { position: relative; z-index: 2; padding: 1.4rem var(--gut) 2.2rem; }
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-text .btn-cta { margin-top: 1.6rem; }
@media (min-width: 900px) {
  /* text left (aligned to content), large banner bleeding to the right edge */
  .hero { display: grid; grid-template-columns: 37% 63%; align-items: center; column-gap: 1.4rem;
          max-width: none; margin: 0; padding: 90px 0 40px 0; }
  .hero-content { order: 1; padding-left: clamp(1.5rem, 3.5vw, 3rem); padding-right: .4rem; }
  .hero-banner { order: 2; }
  .hero-banner img { width: 100%; }
  .hero-title { font-size: clamp(1.8rem, 2.4vw, 2.5rem); }
  .hero-sub { font-size: clamp(1rem, 1.3vw, 1.2rem); }
}
/* desktop: hug section headers/text to the left (kill the centered empty gap) */
@media (min-width: 900px) {
  .section > .wrap.measure { max-width: var(--wrap); margin-inline: auto; }
  .section > .wrap.measure > * { max-width: 52ch; margin-inline: 0; }
}

/* Price + Apply: two columns on desktop (text one side, box/form the other) */
.price-grid, .apply-grid { display: grid; gap: 1.6rem; }
.price-content { display: grid; gap: 1.4rem; }
.price-intro .price-foot { margin-top: 1.2rem; }
.price-grid .group-photo { margin: 0 auto; max-width: 460px; align-self: center; }
@media (min-width: 900px) {
  .price-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.2rem; align-items: center; }
  .price-grid .group-photo { max-width: 100%; margin: 0; }
  .apply-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
  .price-intro h2, .apply-intro h2 { max-width: 18ch; }
  .apply-intro { position: sticky; top: 90px; }
}

/* Founder photo */
.founder-photo { margin: 0; }
.founder-photo img { width: 100%; max-width: 235px; margin-inline: auto; display: block; }
@media (min-width: 960px) { .founder-photo img { max-width: 320px; } }

/* ROI grid + photo */
.roi-grid { display: grid; gap: 1.3rem; align-items: center; }
.roi-photo { margin: 0; order: -1; }
.roi-photo img { width: 100%; max-width: 300px; margin-inline: 0; display: block; }
.roi-text { text-align: left; }
.roi-text p { color: var(--cream-2); }
.roi-text p + p { margin-top: 1rem; }
@media (min-width: 960px) {
  .roi-grid { grid-template-columns: 0.8fr 1fr; gap: 3rem; }
  .roi-photo img { max-width: none; }
}

/* Formación gallery */
.form-gallery { margin-top: 1.8rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.fg-item { margin: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 18px 40px -24px rgba(0,0,0,.8); }
.fg-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; filter: saturate(1.03); transition: transform .6s var(--ease-out); }
@media (hover: hover) { .fg-item:hover img { transform: scale(1.05); } }
@media (min-width: 720px) { .form-gallery { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

/* Group photo */
.group-photo { margin: 1.8rem auto 0; max-width: 550px; }
.group-photo img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 34px 80px -36px rgba(0,0,0,.9); }
.group-photo figcaption { text-align: center; margin-top: 1rem; font-size: .85rem; color: var(--cream-3); }

/* Resultados (antes/después) */
.section-resultados { background: var(--bg); }
.section-resultados > .left { margin-bottom: 1.6rem; }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; align-items: start; }
.res-item { margin: 0; border-radius: 12px; overflow: hidden; border: 1.5px solid rgba(223,201,140,.7); box-shadow: 0 18px 40px -24px rgba(0,0,0,.8); }
.res-item img { width: 100%; height: auto; display: block; }
@media (min-width: 720px) { .results-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

/* 8. Trust strip */
.trust { background: var(--bg-2); border-block: 1px solid var(--line); padding-block: 1.8rem; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 1rem; }
.trust-item { text-align: center; display: flex; flex-direction: column; gap: .3rem; }
.trust-num { font-family: var(--serif); font-size: clamp(2.2rem, 9vw, 3.2rem); font-weight: 600; color: var(--accent); line-height: 1; }
.trust-num--serif { font-weight: 700; font-size: clamp(1.7rem, 6vw, 2.3rem); }
.trust-label { font-size: .78rem; letter-spacing: .03em; color: var(--cream-3); line-height: 1.35; }

/* 9. Sections general */
.section { position: relative; padding-block: 26px; }
/* hairline dorada que se desvanece, como divisor entre bloques */
.section::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(1100px, 88%); height: 1px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(223,201,140,.22), transparent); }
.section h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 6.5vw, 3.3rem); letter-spacing: -0.025em; line-height: 1.08; }
.section .kicker { text-align: inherit; }
.section p { color: var(--cream-2); }
.section .measure > p + p { margin-top: 1.1rem; }
.accent-line { font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--cream) !important; padding-left: 1.1rem; border-left: 2px solid var(--accent); margin-top: 1.6rem; text-align: left; }

/* 10. Market */
.section-market { background: var(--bg); }
.section-market > .left { margin-bottom: 1.6rem; }
.market-cards { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.mcard { background: var(--bg-3); border: 1.5px solid rgba(223,201,140,.7); border-radius: 14px; padding: 1.5rem 1.4rem; text-align: left; }
.mcard-glyph { color: var(--accent); display: inline-flex; margin-bottom: 1rem; }
.mcard-glyph svg { width: 30px; height: 30px; }
.mcard h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-bottom: .6rem; }
.mcard p { color: var(--cream-2); }
.reframe { font-family: var(--serif); font-size: clamp(1.4rem, 4.6vw, 2rem); line-height: 1.35; color: var(--cream) !important; margin-top: 1rem; }
.reframe-punch { font-family: var(--serif); font-size: clamp(1.5rem, 5vw, 2.2rem); line-height: 1.3; color: var(--cream) !important; margin-top: 1.4rem; }

/* 11. ROI */
.section-roi { background: var(--bg-2); }
.roi-line { font-family: var(--serif); font-size: clamp(1.6rem, 5.4vw, 2.5rem); line-height: 1.3; color: var(--cream) !important; margin-bottom: 1.4rem; }

/* 12. CTA band */
.cta-band { background: radial-gradient(70% 200% at 50% 50%, rgba(223,201,140,.10), transparent 65%), var(--bg); padding-block: 1.6rem; }
.cta-band .btn { box-shadow: 0 14px 40px -12px rgba(223,201,140,.5); }

/* 13. Founder */
.section-founder { background: radial-gradient(48% 60% at 16% 28%, rgba(223,201,140,.06), transparent 70%), var(--bg); }
.founder-grid { display: grid; gap: 1.6rem; }
.founder-text h2 { font-family: var(--serif); font-size: clamp(2rem, 6vw, 2.9rem); margin: .3rem 0 1.3rem; }
.founder-text p { color: var(--cream-2); }
.founder-text strong { color: var(--cream); font-weight: 600; }

/* photo frames */
.photo-frame { position: relative; display: grid; place-content: center; gap: .8rem; border: 1px solid var(--line); border-radius: 14px; background: radial-gradient(120% 80% at 30% 10%, rgba(223,201,140,.10), transparent 60%), linear-gradient(160deg, var(--bg-3), var(--bg)); overflow: hidden; text-align: center; }
.photo-frame::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E"); mix-blend-mode: overlay; opacity: .35; pointer-events: none; }
.photo-tall { aspect-ratio: 4 / 5; }
.photo-portrait { aspect-ratio: 3 / 4; }
.photo-mono { font-family: var(--serif); font-size: clamp(3rem, 12vw, 5rem); font-weight: 600; letter-spacing: .04em; color: var(--accent); opacity: .55; position: relative; z-index: 1; }
.photo-note { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-3); position: relative; z-index: 1; }

/* 14. Outcomes */
.section-outcomes { background: var(--bg-2); }
.section-outcomes > .left { margin-bottom: 1.5rem; }
.outcomes-list { display: grid; gap: 1rem; }
.outcomes-list li { position: relative; padding: 1.3rem 1.4rem 1.3rem 3.5rem; background: var(--accent); border: none; border-radius: 12px; color: #232325; font-size: 1.05rem; font-weight: 500; box-shadow: 0 16px 34px -20px rgba(223,201,140,.55); }
.outcomes-list li .hl { color: #232325; font-weight: 800; }
.oc-mark { position: absolute; left: 1.2rem; top: 1.25rem; color: #232325; display: inline-flex; }
.oc-mark svg { width: 22px; height: 22px; }

/* 15. Program / modules */
.section-program { background: var(--bg); }
.section-program > .left { margin-bottom: 1.6rem; }
.modules { display: grid; gap: 0; }
.module { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding-block: 1.9rem; border-top: 1px solid var(--line); }
.module:last-child { border-bottom: 1px solid var(--line); }
.module-num { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: var(--accent); line-height: 1.2; min-width: 2.2ch; }
.module-body h3 { font-family: var(--serif); font-size: clamp(1.35rem, 4.4vw, 1.85rem); margin-bottom: .6rem; color: var(--cream); }
.module-body p { color: var(--cream-2); }

/* 15b. Certificado */
.section-cert { background: var(--bg); }
.cert-grid { display: grid; gap: 2.4rem; align-items: center; }
.cert-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 5.5vw, 2.8rem); margin: .3rem 0 1.2rem; }
.cert-text p { color: var(--cream-2); }
.cert-text p + p { margin-top: 1rem; }
.cert-figure img { width: 100%; max-width: 460px; margin-inline: auto; display: block; }
@media (min-width: 960px) {
  .cert-grid { grid-template-columns: 1fr 0.85fr; gap: 4rem; }
  .cert-figure { order: 2; }
}

/* 16. Videos */
.section-videos { background: var(--bg-2); }
.section-videos > .left { margin-bottom: 1.6rem; }
.videos-grid { display: grid; gap: 2rem; justify-items: center; }
.video-card { width: 100%; max-width: 360px; }
.video-embed { width: 100%; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); box-shadow: 0 24px 60px -30px rgba(0,0,0,.8); }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-card figcaption { margin-top: 1rem; text-align: center; font-size: .85rem; color: var(--cream-3); }

/* 17. Quotes */
.section-quotes { background: var(--bg); }
.section-quotes > .left { margin-bottom: 1.6rem; }
.quotes-grid { display: grid; gap: 1.4rem; }
.quote-card { padding: 2rem 1.7rem; background: var(--bg-3); border: 1.5px solid rgba(223,201,140,.7); border-radius: 14px; position: relative; }
.quote-card::before { content: "\201C"; font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--accent); opacity: .4; position: absolute; top: .4rem; left: 1rem; }
.quote-card p { font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.5; color: var(--cream) !important; position: relative; z-index: 1; margin-bottom: 1.1rem; }
.quote-card cite { font-style: normal; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }

/* 18. Price */
.section-price { background: radial-gradient(80% 60% at 50% 0%, rgba(223,201,140,.10), transparent 60%), var(--bg-2); }
.section-price h2 { margin-bottom: 2rem; }
.price-box { background: var(--bg-3); border: 1.5px solid rgba(223,201,140,.7); border-radius: 18px; padding: 2.4rem 1.8rem; }
.price-habitual { font-size: .95rem; color: var(--cream-3) !important; letter-spacing: .02em; }
.price-habitual s { color: var(--cream-3); }
.price-now { display: flex; flex-direction: column; align-items: center; gap: .2rem; margin: .4rem 0 1.4rem; }
.price-figure { font-family: var(--serif); font-size: clamp(3.4rem, 16vw, 5rem); font-weight: 600; color: var(--accent); line-height: 1; }
.price-edition { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-3); }
.price-roi { font-size: 1.05rem; color: var(--cream-2) !important; line-height: 1.6; }
.price-roi strong { color: var(--cream); }
.price-foot { margin-top: 1.4rem; font-size: .9rem; color: var(--cream-3) !important; }

/* Framed "amor" photo */
.section-amor { background: var(--bg); padding-inline: var(--gut); }
.framed-amor { max-width: 430px; margin-inline: auto; }
/* en escritorio esta foto queda suelta/colgada -> se oculta (se mantiene en móvil) */
@media (min-width: 900px) { .section-amor { display: none; } }

/* 19. Apply / candidatura */
.section-apply { background: radial-gradient(46% 55% at 85% 15%, rgba(223,201,140,.06), transparent 70%), var(--bg); }
.apply-lead { margin-top: 1rem; color: var(--cream-2) !important; }
.steps { display: grid; gap: 1rem; margin: 2.6rem 0; text-align: left; }
.step { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; background: var(--bg-3); border: 1.5px solid rgba(223,201,140,.7); border-radius: 12px; padding: 1.1rem 1.3rem; }
.step-num { display: grid; place-content: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent); color: var(--accent); font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.step p { color: var(--cream-2); margin: 0; }

.cta-form { margin-top: 1rem; display: grid; gap: 1.1rem; text-align: left; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .82rem; letter-spacing: .03em; color: var(--cream-2); }
.field input, .field select { width: 100%; padding: .9em 1em; background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; color: var(--cream); transition: border-color .3s var(--ease-out), background-color .3s var(--ease-out); }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--bg-4); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23DFC98C' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--cream-3); line-height: 1.45; cursor: pointer; }
.field-check input { width: 1.1rem; height: 1.1rem; margin-top: .15rem; accent-color: var(--accent); flex: 0 0 auto; }
.form-note { text-align: center; font-size: .85rem; color: var(--cream-3) !important; }
.form-status { text-align: center; padding: .9rem 1rem; border-radius: 10px; font-size: .92rem; }
.form-status.is-ok { background: var(--accent-soft); color: var(--cream); border: 1px solid rgba(223,201,140,.3); }
.form-status.is-err { background: rgba(180,60,40,.12); color: #e7b9ad; border: 1px solid rgba(180,60,40,.3); }

/* ============ Bloques destacados en dorado (texto oscuro) ============ */
.trust, .section-roi, .section-cert { background: var(--accent); }
.section-roi::before, .section-cert::before { display: none; } /* sin hairline sobre dorado */

/* Trust strip dorado */
.trust { border-block: none; }
.trust .trust-num { color: #232325; }
.trust .trust-label { color: #574d33; }

/* ROI dorado */
.section-roi .roi-line, .section-roi .roi-line .hl { color: #232325 !important; }
.section-roi .roi-text p { color: #433d29; }

/* Certificado dorado (la imagen tiene fondo oscuro -> se enmarca como foto) */
.section-cert .kicker { color: #6a5d38; }
.section-cert .cert-text h2 { color: #232325; }
.section-cert .cert-text p { color: #433d29; }
.section-cert .cert-figure img { border-radius: 12px; box-shadow: 0 26px 60px -26px rgba(0,0,0,.75); }

/* 20. Footer */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: 3rem 6rem; }
.footer-inner { display: grid; gap: 1.8rem; }
.footer-name { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); margin-bottom: .5rem; }
.footer-meta { font-size: .88rem; color: var(--cream-3); }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; color: var(--cream-3); transition: color .3s var(--ease-out); }
@media (hover: hover) { .footer-links a:hover { color: var(--accent); } }

/* 21. Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%) translateY(140%);
  z-index: 90; display: inline-flex; align-items: center; gap: .5em;
  background: var(--accent); color: #1a1407; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 1em 1.6em; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 12px 34px -10px rgba(0,0,0,.7);
  transition: transform .5s var(--ease-out);
  width: calc(100% - 2rem); max-width: 420px; justify-content: center;
}
.sticky-cta.is-shown { transform: translateX(-50%) translateY(0); }
.sticky-cta span { transition: transform .4s var(--ease-out); }
@media (hover: hover) { .sticky-cta:hover span { transform: translateX(4px); } }

/* 22. Responsive */
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .market-cards { grid-template-columns: repeat(3, 1fr); }
  .quotes-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .sticky-cta { display: none; }
}
@media (min-width: 960px) {
  .founder-grid { grid-template-columns: 1fr 0.8fr; gap: 3rem; align-items: center; }
  .founder-text { order: 1; }
  .founder-figure { order: 2; }
  .module-num { font-size: 1.95rem; }
}
@media (min-width: 1280px) { .hero-title { font-size: clamp(3.2rem, 4.6vw, 4.8rem); } }

/* 23. Reduced motion */
@media (prefers-reduced-motion: reduce) { .hero-scroll span { animation: none; } }