/* =================================================================== */
/* MÉTODO FORJA — Landing                                               */
/* Cálido premium · Hueso + Negro Forja + Brasa/Fuego                  */
/* Mobile-first · sin overflow horizontal · WCAG AA                    */
/* =================================================================== */

:root {
  --negro: #1C1B1A;
  --carbon: #2E2C2A;
  --brasa: #E8823A;
  --fuego: #D2541B;
  --acero: #8A8F98;
  --hueso: #F5F0E8;
  --blanco: #FFFFFF;

  /* derivados */
  --negro-soft: #26241f;
  --line-dark: rgba(245, 240, 232, 0.12);
  --line-light: rgba(28, 27, 26, 0.12);
  --text-dark-2: rgba(245, 240, 232, 0.72);   /* secundario sobre oscuro */
  --text-light-2: rgba(28, 27, 26, 0.72);      /* secundario sobre claro */

  --font-head: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, sans-serif;

  --container: 1120px;
  --container-narrow: 760px;
  --pad-x: 20px;
  --radius: 14px;
  --radius-lg: 20px;
  --header-h: 62px;

  --shadow-card: 0 6px 24px rgba(28, 27, 26, 0.10);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* ----------------------- RESET / BASE ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--negro);
  background-color: var(--hueso);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
strong { font-weight: 700; color: var(--brasa); }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.18; letter-spacing: -0.01em; }

[id] { scroll-margin-top: 80px; }

:focus-visible { outline: 2px solid var(--fuego); outline-offset: 3px; border-radius: 4px; }

/* ----------------------- LAYOUT ----------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: 64px; position: relative; }

/* temas claro / oscuro */
.section--light { background-color: var(--hueso); color: var(--negro); }
.section--dark { background-color: var(--negro); color: var(--hueso); }
.section--dark .section__title { color: var(--hueso); }

/* textura de líneas muy sutil (papel/metal) sobre secciones oscuras */
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px);
  background-size: 100% 40px;
  opacity: 0.4;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.section--dark > .container { position: relative; z-index: 1; }

/* ----------------------- TIPO / BLOQUES ----------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brasa);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--fuego); }

.section__title {
  font-weight: 800;
  font-size: clamp(1.6rem, 5.2vw, 2.7rem);
  color: var(--negro);
}
.section__title--center { text-align: center; }

.section__subtitle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--brasa);
  margin-top: 10px;
}
.section__lead { font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: var(--text-light-2); margin-top: 12px; }
.section--dark .section__lead { color: var(--text-dark-2); }
.section__lead--center { text-align: center; max-width: 640px; margin-inline: auto; }

/* cuerpo = 18px con interlineado 1.7, igual que el cuerpo de nota de infobae */
.prose p { font-size: clamp(1.125rem, 1.9vw, 1.2rem); line-height: 1.7; color: var(--text-light-2); }
.section--dark .prose p { color: var(--text-dark-2); }
.checklist li, .vs__list li, .faq__a p { font-size: 1.1rem; line-height: 1.6; }
.fase__text { font-size: 1.05rem; }
.prose p + p { margin-top: 14px; }
.prose { margin-top: 20px; }
.prose--center { text-align: center; max-width: 640px; margin-inline: auto; }

.pull-quote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.3;
  color: var(--negro);
  border-left: 3px solid var(--fuego);
  padding-left: 18px;
  margin-top: 26px;
}
.section--dark .pull-quote { color: var(--hueso); }
.pull-quote--center {
  border-left: none;
  border-top: 2px solid var(--fuego);
  padding: 24px 6px 0;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-top: 44px;
}

.callout {
  margin-top: 30px;
  background: var(--blanco);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--brasa);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  color: var(--negro);
  box-shadow: var(--shadow-card);
}
.section--dark .callout {
  background: var(--carbon);
  border-color: var(--line-dark);
  border-left-color: var(--brasa);
  color: var(--hueso);
  box-shadow: var(--shadow-dark);
}
.note {
  margin-top: 30px;
  font-size: 0.98rem;
  color: var(--text-dark-2);
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

/* ----------------------- BOTONES ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.btn--sm { min-height: 44px; padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 1.05rem; }

/* Fuego reservado para WhatsApp / conversión */
.btn--wa {
  background-color: var(--fuego);
  color: var(--blanco);
  box-shadow: 0 6px 20px rgba(210, 84, 27, 0.28);
}

/* ----------------------- TOPBAR ----------------------- */
.topbar {
  background: var(--brasa);
  color: var(--negro);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px var(--pad-x);
}
.topbar__full { display: none; }
.topbar__short { display: inline; }

/* ----------------------- HEADER ----------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(28, 27, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 9px; min-height: 48px; color: var(--hueso); }
.brand__mark { height: 30px; width: auto; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.04em; }

.nav { display: none; gap: 26px; }
.nav__link { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--text-dark-2); transition: color 0.18s ease; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__cta { display: none; }

/* Hamburguesa */
.nav-toggle {
  display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-dark); border-radius: 12px; color: var(--hueso);
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; display: block; width: 22px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -7px; left: 0; }
.nav-toggle__bars::after { position: absolute; top: 7px; left: 0; }
body.nav-open .nav-toggle__bars { background: transparent; }
body.nav-open .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 55;
  display: flex; align-items: center; justify-content: center;
  background: rgba(28, 27, 26, 0.98);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.25s ease;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { opacity: 1; }
.mobile-nav__list { list-style: none; padding: 0 24px; width: 100%; max-width: 420px; display: grid; gap: 6px; text-align: center; }
.mobile-nav__list a { display: flex; align-items: center; justify-content: center; min-height: 56px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--hueso); border-radius: 12px; }
.mobile-nav__list .btn { margin-top: 12px; }

/* ----------------------- HERO ----------------------- */
.hero { padding-block: 52px 60px; }
.hero__inner { display: grid; gap: 36px; }
.hero__title { font-weight: 800; font-size: clamp(1.95rem, 6.2vw, 3.1rem); color: var(--hueso); text-wrap: balance; }
.hero__lead { margin-top: 20px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-dark-2); max-width: 560px; }
.hero__lead strong { color: var(--brasa); }
.hero__reinforce { margin-top: 16px; font-size: 0.98rem; color: var(--acero); }
.hero__for { margin-top: 14px; font-size: 0.9rem; font-weight: 500; color: var(--brasa); max-width: 520px; }
.hero__cta { margin-top: 30px; }
.hero__cta .btn { width: 100%; }
.microcopy { margin-top: 12px; font-size: 0.86rem; color: var(--acero); max-width: 420px; }
.microcopy--dark { color: var(--text-dark-2); margin-inline: auto; text-align: center; }
.hero__phases {
  margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--acero);
}
.hero__phases span { position: relative; }
.hero__phases span:not(:last-child)::after { content: "·"; margin-left: 14px; color: var(--fuego); }

/* placeholder de foto */
.photo-ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(245,240,232,0.03) 0 10px, transparent 10px 20px),
    var(--carbon);
  color: var(--acero);
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em;
  aspect-ratio: 4 / 5;
}
.section--light .photo-ph { border-color: var(--line-light); background: repeating-linear-gradient(45deg, rgba(28,27,26,0.03) 0 10px, transparent 10px 20px), var(--blanco); }
.photo-ph--hero { max-width: 420px; margin-inline: auto; }
.photo-ph--about { max-width: 360px; }

/* foto real del hero (recorte flotante sobre fondo oscuro) */
.hero__photo {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
/* foto "Sobre Joaquín" como tarjeta blanca sobre fondo crema */
.photo-card {
  max-width: 360px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blanco);
  box-shadow: var(--shadow-card);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ----------------------- CHECKLIST ----------------------- */
.checklist { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text-light-2); }
.section--dark .checklist li { color: var(--text-dark-2); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.15em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brasa);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}
/* variante "dolor" (identificación): guión en vez de check */
.checklist--pain li::before {
  background: var(--acero);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ----------------------- COMPARADOR (No/Sí, Antes/Después) ----------------------- */
.vs { margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 18px; }
.vs__col { border-radius: var(--radius-lg); padding: 26px 22px; border: 1px solid var(--line-light); }
.section--dark .vs__col { border-color: var(--line-dark); }
.vs__col--yes { background: rgba(232, 130, 58, 0.08); border-color: rgba(232, 130, 58, 0.28); }
.vs__col--no { background: rgba(138, 143, 152, 0.10); }
.section--dark .vs__col--no { background: rgba(255,255,255,0.03); }
.vs__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--negro); }
.section--dark .vs__title { color: var(--hueso); }
.vs__col--yes .vs__title { color: var(--fuego); }
.vs__list { list-style: none; padding: 0; display: grid; gap: 11px; }
.vs__list li { position: relative; padding-left: 28px; color: var(--text-light-2); }
.section--dark .vs__list li { color: var(--text-dark-2); }
.vs__list li::before { content: ""; position: absolute; left: 0; top: 0.2em; width: 18px; height: 18px; background-repeat: no-repeat; background-position: center; background-size: contain; }
.vs__col--yes .vs__list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D2541B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.vs__col--no .vs__list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A8F98' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); }

/* ----------------------- MÉTODO / FASES ----------------------- */
.metodo .prose--center { margin-bottom: 8px; }
.fases { list-style: none; padding: 0; margin-top: 44px; display: grid; gap: 16px; }
.fase {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start;
  background: var(--carbon); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: 24px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.fase__letter {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1;
  color: var(--fuego);
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(232,130,58,0.4); border-radius: 14px;
  background: rgba(232,130,58,0.08);
}
.fase__name { font-size: 1.35rem; font-weight: 700; color: var(--hueso); }
.fase__short { margin-top: 4px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--brasa); }
.fase__text { margin-top: 10px; color: var(--text-dark-2); }
.fase__quote { margin-top: 12px; font-style: italic; color: var(--acero); font-size: 0.95rem; }

/* recorrido comercial */
.journey {
  list-style: none; padding: 0; margin: 44px 0 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px;
}
.journey li {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(232,130,58,0.10); border: 1px solid rgba(232,130,58,0.3); color: var(--hueso);
}
.journey li:not(:last-child)::after { content: "→"; margin-left: 12px; color: var(--fuego); }

/* Método en sección clara: tarjetas de fase + journey */
.section--light .fase { background: var(--blanco); border-color: var(--line-light); box-shadow: var(--shadow-card); }
.section--light .fase__name { color: var(--negro); }
.section--light .fase__text { color: var(--text-light-2); }
.section--light .journey li { color: var(--negro); }
/* nota honesta sobre fondo claro */
.note--light { color: var(--text-light-2); font-style: italic; }

/* ----------------------- PRINCIPIOS / PROCESO (rodaje) ----------------------- */
.principles { list-style: none; padding: 0; margin-top: 30px; display: grid; gap: 12px; }
.principles li {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--hueso); padding-left: 22px; border-left: 3px solid var(--fuego); line-height: 1.3;
}
.process { margin-top: 28px; color: var(--text-dark-2); font-size: 1.05rem; }

/* ----------------------- SECUENCIA (AMI) ----------------------- */
.sequence {
  list-style: none; padding: 0; margin: 34px 0 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px;
}
.sequence li {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 12px 18px; border-radius: 12px;
  background: var(--blanco); border: 1px solid var(--line-light); color: var(--negro);
  box-shadow: var(--shadow-card);
}
.sequence li:not(:last-child)::after { content: "→"; margin-left: 10px; color: var(--fuego); }

/* ----------------------- DIAGNÓSTICO ----------------------- */
.diagnostico__inner { text-align: center; }
.diagnostico__inner .eyebrow { color: var(--brasa); }
.diagnostico .prose { text-align: center; max-width: 620px; margin-inline: auto; }
.diagnostico__sub { margin-top: 26px; font-family: var(--font-head); font-weight: 600; color: var(--hueso); }
.diagnostico .checklist { max-width: 520px; margin-inline: auto; text-align: left; }

/* ----------------------- SOBRE JOAQUÍN ----------------------- */
.sobre__inner { display: grid; gap: 30px; }

/* ----------------------- FAQ ----------------------- */
.faq__list { margin-top: 34px; border-top: 1px solid var(--line-light); }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__q {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; min-height: 56px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--negro); cursor: pointer;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--fuego); transition: transform 0.22s ease, opacity 0.22s ease; }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 4px 20px; }
.faq__a p { color: var(--text-light-2); }
.faq__item[open] .faq__a { animation: faqReveal 0.28s ease; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ----------------------- CTA ENTRE SECCIONES ----------------------- */
.section-cta { margin-top: 40px; text-align: center; }
.section-cta .btn { width: 100%; }

/* ----------------------- CIERRE / REMATE ----------------------- */
.cierre__inner { text-align: center; }
.brand-remate { margin-top: 44px; display: grid; gap: 6px; }
.brand-remate__name { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brasa); font-size: 1.1rem; }
.brand-remate__tag { font-family: var(--font-head); font-weight: 600; color: var(--hueso); font-size: 1.05rem; }

/* ----------------------- FOOTER ----------------------- */
.site-footer { background: var(--negro); color: var(--text-dark-2); border-top: 1px solid var(--line-dark); padding-block: 40px; text-align: center; }
.site-footer__inner { display: grid; gap: 12px; justify-items: center; }
.brand--footer { color: var(--hueso); }
.site-footer__tag { font-size: 0.92rem; max-width: 420px; }
.site-footer__copy { font-size: 0.82rem; color: var(--acero); }

/* ----------------------- STICKY WA (mobile) ----------------------- */
.sticky-wa {
  position: fixed; left: 16px; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 20px; border-radius: 999px;
  background: var(--fuego); color: var(--blanco);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(140%); transition: transform 0.3s ease;
}
.sticky-wa.is-visible { transform: translateY(0); }
.sticky-wa svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ----------------------- MODAL / FORM ----------------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 9, 8, 0.74); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.25s ease; }
.modal__dialog {
  position: relative; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
  background: linear-gradient(165deg, var(--carbon), var(--negro));
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark); padding: 34px 22px 26px; color: var(--hueso);
  opacity: 0; transform: translateY(16px) scale(0.98); transition: opacity 0.25s ease, transform 0.25s ease;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__dialog { opacity: 1; transform: none; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--negro); border: 1px solid var(--line-dark); color: var(--text-dark-2); }
.modal__close svg { width: 20px; height: 20px; }
.modal__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.4rem, 4vw, 1.8rem); color: var(--hueso); padding-right: 40px; }
.modal__lead { margin-top: 8px; margin-bottom: 22px; color: var(--text-dark-2); font-size: 1rem; }
.form__field { margin-bottom: 16px; }
.form__label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--hueso); margin-bottom: 7px; }
.form__hintlabel { color: var(--acero); font-weight: 400; }
.form__input {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--hueso);
  background: var(--negro); border: 1px solid var(--line-dark); border-radius: 10px;
  padding: 13px 15px; min-height: 48px; transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form__input::placeholder { color: var(--acero); }
.form__textarea { min-height: 92px; resize: vertical; }
.form__select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8F98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.form__input:focus { outline: none; border-color: var(--fuego); box-shadow: 0 0 0 3px rgba(210, 84, 27, 0.25); }
.form__submit { margin-top: 6px; }
.form__hint { margin-top: 12px; color: var(--acero); font-size: 0.85rem; text-align: center; }
.form-success { text-align: center; padding: 10px 0; }
.form-success__icon { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(232, 130, 58, 0.15); color: var(--brasa); margin-bottom: 16px; }
.form-success__icon svg { width: 30px; height: 30px; }
.form-success p { color: var(--text-dark-2); margin-bottom: 16px; }

/* ----------------------- REVEAL ----------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =================================================================== */
/* HOVER — solo puntero fino                                            */
/* =================================================================== */
@media (hover: hover) and (pointer: fine) {
  .btn--wa:hover { background: var(--brasa); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(210, 84, 27, 0.36); }
  .nav__link:hover { color: var(--brasa); }
  .fase:hover { transform: translateY(-3px); border-color: rgba(232,130,58,0.4); box-shadow: var(--shadow-dark); }
  .nav-toggle:hover { border-color: rgba(232,130,58,0.4); }
  .mobile-nav__list a:hover { background: rgba(232,130,58,0.12); }
  .sticky-wa:hover { background: var(--brasa); }
}

/* =================================================================== */
/* RESPONSIVE ≥600px — CTAs en fila                                     */
/* =================================================================== */
@media (min-width: 600px) {
  .hero__cta .btn, .section-cta .btn { width: auto; }
}

/* =================================================================== */
/* RESPONSIVE ≥768px                                                    */
/* =================================================================== */
@media (min-width: 768px) {
  body { font-size: 17px; }
  .section { padding-block: 92px; }
  .topbar__full { display: inline; }
  .topbar__short { display: none; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .vs { grid-template-columns: 1fr 1fr; gap: 22px; }
  .fases { grid-template-columns: 1fr 1fr; }
  .sobre__inner { grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 44px; }

  /* el CTA fijo es solo mobile */
  .sticky-wa { display: none; }
}

/* =================================================================== */
/* RESPONSIVE ≥1024px                                                   */
/* =================================================================== */
@media (min-width: 1024px) {
  .hero { padding-block: 76px 84px; }
  .hero__inner { grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: 40px; }
  .hero__media { justify-self: end; }
  .hero__photo { max-width: 430px; }
  .fases { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .fase { grid-template-columns: 1fr; text-align: left; }
  .fase__letter { margin-bottom: 4px; }
}

/* =================================================================== */
/* REDUCE MOTION                                                        */
/* =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .faq__item[open] .faq__a { animation: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
