/* ============================================
   RAIZ — Sistema visual
   Cormorant Garamond (display) + Mulish (cuerpo)
   ============================================ */

:root {
  /* Paleta clara */
  --cream: #FAF6EF;
  --cream-warm: #F3ECE0;
  --beige: #E4D8C5;

  /* Texto */
  --text-dark: #4A3F33;
  --text-muted: #8A8178;

  /* Acentos */
  --sage: #8E9C82;
  --sage-deep: #6F7A5E;
  --terracotta: #BC8A66;

  /* Paleta oscura (cacao cálido) */
  --cacao: #3A2E24;
  --cacao-deep: #2E2419;
  --cream-on-dark: #F3ECE0;
  --muted-on-dark: #C9BBA8;

  /* Tipografía */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Mulish', sans-serif;

  /* Espaciado */
  --section-pad: clamp(64px, 10vw, 140px);
  --max-width: 1180px;

  /* Transiciones */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration: 0.3s;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
img:not(.logo-img-light):not(.logo-img-dark) {
  border-radius: 14px;
  -webkit-mask-image: radial-gradient(ellipse 82% 88% at 50% 50%, black 52%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 88% at 50% 50%, black 52%, transparent 100%);
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ TIPOGRAFÍA ============ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 24px;
}

[data-theme="dark"] .eyebrow { color: var(--terracotta); opacity: 0.9; }

h1, h2, h3, blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 400;
}

h1 em {
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
}

p { max-width: 60ch; }

.subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 38ch;
  margin-top: 28px;
}

[data-theme="dark"] .subtitle,
[data-theme="dark"] p { color: var(--muted-on-dark); }

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] blockquote {
  color: var(--cream-on-dark);
}

/* Cita grande - frase ancla */
.big-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 400;
  line-height: 1.25;
  max-width: 22ch;
}

/* ============ HEADER ============ */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: var(--cream);
  transition: background-color var(--duration) var(--ease),
              padding var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(74, 63, 51, 0.08);
}

header.dark {
  background: var(--cacao);
  border-bottom: 1px solid rgba(243, 236, 224, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  transition: color var(--duration) var(--ease);
  color: var(--text-dark);
}

header.dark .logo { color: var(--cream-on-dark); }

.logo svg { width: 28px; height: 28px; transition: transform var(--duration) var(--ease); }
.logo svg path, .logo svg circle { stroke: currentColor; }

nav {
  display: flex;
  gap: 36px;
  font-size: 15px;
}

nav a {
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
  position: relative;
}

header.dark nav a { color: var(--muted-on-dark); }

nav a.active { color: var(--text-dark); font-weight: 600; }
header.dark nav a.active { color: var(--cream-on-dark); }

nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

nav a:hover::after { width: 100%; }

@media (max-width: 760px) {
  nav { display: none; }
}

/* ============ SECCIONES ============ */

section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

[data-theme="dark"] {
  background: var(--cacao);
}

[data-theme="dark"].deep { background: var(--cacao-deep); }

/* transición suave entre secciones claras/oscuras */
[data-theme="dark"]::before,
[data-theme="dark"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}

/* ============ BOTONES Y ENLACES ============ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cacao);
  color: var(--cream-on-dark);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.btn-primary:hover { transform: translateY(-2px); background: var(--cacao-deep); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid currentColor;
  color: var(--text-dark);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-secondary:hover { background: rgba(74,63,51,0.06); transform: translateY(-2px); }

[data-theme="dark"] .btn-secondary {
  color: var(--cream-on-dark);
}
[data-theme="dark"] .btn-secondary:hover { background: rgba(243,236,224,0.08); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), opacity 0.3s var(--ease);
}

.link-arrow:hover { gap: 14px; }

/* ============ FORMAS DE FONDO ============ */

.shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.shape-diagonal {
  top: -10%;
  right: -10%;
  width: 70%;
  height: 130%;
  background: var(--cream-warm);
  transform: skewX(-12deg) translateX(0);
  z-index: 0;
}

.shape-circle {
  top: 8%;
  right: -18%;
  width: 50vw;
  height: 50vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.06;
  z-index: 0;
}

.shape-letter {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(280px, 38vw, 560px);
  line-height: 1;
  color: var(--text-dark);
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ============ PLACEHOLDERS DE IMAGEN ============ */

.img-placeholder {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--beige), var(--cream-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 280px;
  overflow: hidden;
}

.img-placeholder span { padding: 0 24px; }

.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

[data-theme="dark"] .img-placeholder {
  background: linear-gradient(135deg, rgba(243,236,224,0.06), rgba(243,236,224,0.02));
  color: var(--muted-on-dark);
}

/* ============ ANIMACIONES REVEAL ============ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .shape, header { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ HERO ============ */

.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  background: url('images/inicio1.2.jpg') center 40% / cover fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 246, 239, 0.94) 0%,
    rgba(250, 246, 239, 0.82) 45%,
    rgba(250, 246, 239, 0.52) 100%
  );
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

/* fila superior: título izquierda / imagen derecha */
.hero-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text { position: relative; z-index: 1; }

.hero .img-placeholder {
  aspect-ratio: 4/4.5;
  min-height: 340px;
  max-width: 380px;
  width: 100%;
  justify-self: end;
}
.hero-top img {
  width: 100%;
  height: auto;
  justify-self: end;
}

/* fila inferior: subtítulo + CTA centrados */
.hero-bottom {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-bottom .subtitle {
  max-width: 600px;
  margin-top: 0;
}

.hero-bottom .cta-row {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-top { grid-template-columns: 1fr; gap: 40px; }
  .hero .img-placeholder { max-width: 100%; justify-self: auto; aspect-ratio: 4/3; min-height: 240px; }
  .hero-top img { max-width: 100%; justify-self: auto; }
  .hero-bottom { margin-top: 36px; }
}

.hero h1 { margin-top: 4px; text-align: center; }
.hero .cta-row { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============ SHARED HERO BG (parallax + overlay) ============ */

.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center 70%;
  background-attachment: fixed;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 246, 239, 0.94) 0%,
    rgba(250, 246, 239, 0.82) 45%,
    rgba(250, 246, 239, 0.52) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-bg .wrap { position: relative; z-index: 1; }
.hero-bg .shape { z-index: 0; }

/* ============ EL PROBLEMA ============ */

.problem .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem .text-block { position: relative; z-index: 1; }
.problem .big-quote { margin-bottom: 32px; }
.problem p + p { margin-top: 18px; }

.problem .img-placeholder { aspect-ratio: 4/5; }

@media (max-width: 900px) {
  .problem .wrap { grid-template-columns: 1fr; gap: 36px; }
  .problem .img-placeholder { aspect-ratio: 16/10; min-height: 220px; }
}

/* ============ QUE ES RAIZ ============ */

.what-is .wrap { position: relative; z-index: 1; }
.what-is .big-quote { max-width: 16ch; margin-bottom: 40px; }

.what-is .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 880px;
}

.what-is .two-col p { font-size: 16px; }

.what-is .link-arrow { margin-top: 40px; display: inline-block; color: var(--cream-on-dark); border-color: var(--cream-on-dark); }

@media (max-width: 760px) {
  .what-is .two-col { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ EL CAMINO ============ */

.camino-header { max-width: 640px; margin-bottom: 64px; }

.camino-list {
  position: relative;
  max-width: 880px;
}

.camino-progress-track {
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--beige);
}

.camino-progress-fill {
  position: absolute;
  left: 28px;
  top: 12px;
  width: 2px;
  height: 0%;
  background: var(--terracotta);
  transition: height 0.2s linear;
}

.camino-item {
  display: grid;
  grid-template-columns: 56px 140px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(74,63,51,0.08);
  opacity: 0.35;
  transition: opacity 0.6s var(--ease);
}

.camino-item:last-child { border-bottom: none; }

.camino-item.active { opacity: 1; }

.camino-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--terracotta);
  position: relative;
  z-index: 1;
}

.camino-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
}

.camino-text { font-size: 15px; color: var(--text-muted); max-width: 48ch; }

@media (max-width: 700px) {
  .camino-item { grid-template-columns: 44px 1fr; }
  .camino-title { grid-column: 2; }
  .camino-text { grid-column: 2; }
  .camino-progress-track, .camino-progress-fill { left: 0; width: 1px; }
  .camino-num { background: var(--cream); }
}

/* ============ SOBRE MI ============ */

.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about .img-placeholder { aspect-ratio: 1/1; }

.about .big-quote { margin-bottom: 28px; }
.about p { margin-bottom: 24px; }

@media (max-width: 900px) {
  .about .wrap { grid-template-columns: 1fr; gap: 36px; }
  .about .img-placeholder { aspect-ratio: 4/3; max-width: 360px; }
}

/* ============ FORMAS DE EMPEZAR ============ */

.empezar-header { margin-bottom: 56px; }
.empezar-header p,
.empezar-header .subtitle { max-width: none; }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.card {
  background: var(--cream-warm);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.card.featured { background: var(--beige); }

.card .eyebrow { margin-bottom: 16px; font-size: 12px; }
.card h3 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 16px; }
.card p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; flex-grow: 1; }

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
}

.private-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(74,63,51,0.1);
}

.private-block h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.private-block p { font-size: 15px; color: var(--text-muted); max-width: none; }

@media (max-width: 700px) {
  .private-block { grid-template-columns: 1fr; }
}

.see-all { text-align: center; margin-top: 48px; }

/* ============ FOOTER ============ */

footer {
  padding: 56px 0 40px;
  background: var(--cacao-deep);
  color: var(--muted-on-dark);
}

footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

footer .logo { color: var(--cream-on-dark); }

.footer-copy { font-size: 12px; color: var(--muted-on-dark); opacity: 0.7; max-width: none; margin-top: -8px; }

footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; font-size: 14px; }
footer nav a { color: var(--muted-on-dark); }

.footer-social { display: flex; gap: 20px; align-items: center; }
.footer-social a { color: var(--muted-on-dark); display: flex; align-items: center; transition: color var(--duration) var(--ease); }
.footer-social a:hover { color: var(--cream-on-dark); }

footer .made-with {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--muted-on-dark);
  opacity: 0.7;
}

/* ============ LEGAL PAGES ============ */
.legal-body { padding: var(--section-pad) 0; }
.legal-body .wrap { max-width: 780px; }
.legal-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--cacao);
  margin: 48px 0 14px;
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { max-width: none; margin-bottom: 14px; color: var(--text-muted); line-height: 1.75; }
.legal-body ul { list-style: none; padding: 0; margin: 0 0 14px; }
.legal-body ul li { padding-left: 20px; position: relative; color: var(--text-muted); margin-bottom: 8px; line-height: 1.75; }
.legal-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--terracotta); }
.legal-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* ============ PAGE HERO (cabecera páginas internas) ============ */

.page-hero h2 { margin-top: 12px; }
.page-hero p,
.page-hero .subtitle { max-width: none; }

/* ============ EXPLICA (texto + imagen, 2 col) ============ */

.explica .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.explica .text-block p + p { margin-top: 18px; }
.explica .wrap > .big-quote { grid-column: 1 / -1; max-width: none; margin-top: 16px; }
.explica .img-placeholder { aspect-ratio: 4/5; }

@media (max-width: 900px) {
  .explica .wrap { grid-template-columns: 1fr; gap: 40px; }
  .explica .img-placeholder { aspect-ratio: 16/10; min-height: 220px; }
}

/* ============ CONTRAST COLS (dark sections) ============ */

.contrast-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(243,236,224,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.contrast-col { padding: 32px 36px; }

.contrast-col:first-child {
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(243,236,224,0.1);
}

.contrast-col:last-child { background: rgba(188,138,102,0.12); }

.contrast-col-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.contrast-col:last-child .contrast-col-label { color: var(--terracotta); }

.contrast-col p { font-size: 15px; color: var(--muted-on-dark); max-width: none; }

@media (max-width: 700px) {
  .contrast-cols { grid-template-columns: 1fr; }
  .contrast-col:first-child { border-right: none; border-bottom: 1px solid rgba(243,236,224,0.1); }
}

/* ============ METHOD STEPS (01/02/03 estilo camino) ============ */

.method-steps { max-width: 880px; }

.method-item {
  display: grid;
  grid-template-columns: 56px 160px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(74,63,51,0.08);
}

.method-item:last-child { border-bottom: none; }

.method-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--terracotta);
}

.method-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
}

.method-text { font-size: 15px; color: var(--text-muted); max-width: 52ch; }

@media (max-width: 700px) {
  .method-item { grid-template-columns: 40px 1fr; }
  .method-title { grid-column: 2; }
  .method-text { grid-column: 1 / -1; }
}

/* ============ DIFERENTE (dark, big-quote full-width) ============ */

.diferente .big-quote { max-width: none; }

.regla-de-oro .wrap { text-align: center; }
.regla-de-oro .subtitle { text-align: center; max-width: none; margin-left: auto; margin-right: auto; }

.btn-dark-section {
  background: var(--cream);
  color: var(--cacao);
  margin-top: 40px;
  display: inline-block;
}

.btn-dark-section:hover {
  background: var(--terracotta);
  color: var(--cream);
}

/* ============ RESULT LIST ============ */

.result-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  padding: 0;
}

.result-list li {
  padding-left: 22px;
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.4;
  color: var(--cacao);
}

.result-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ============ PAGE CTA ============ */

.page-cta { text-align: center; }

.page-cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.page-cta p { color: var(--text-muted); max-width: 44ch; text-align: center; }

/* ============ CARDS 4 (grid 2x2) ============ */

.cards-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 760px) {
  .cards-4 { grid-template-columns: 1fr; }
}

/* ============ INTENSAMENTE HERO ============ */

.intensamente-hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.intensamente-hero .img-placeholder { aspect-ratio: 4/4.5; min-height: 340px; }
.intensamente-hero h1 { margin-top: 12px; }

@media (max-width: 900px) {
  .intensamente-hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .intensamente-hero .img-placeholder { aspect-ratio: 16/10; min-height: 220px; }
}

/* ============ MARIAN HERO ============ */

.marian-hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.marian-hero .img-placeholder { aspect-ratio: 3/4; min-height: 320px; }
.marian-hero .big-quote { max-width: 16ch; }

@media (max-width: 900px) {
  .marian-hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .marian-hero .img-placeholder { aspect-ratio: 4/3; min-height: 220px; }
}

/* ============ MARIAN STORY ============ */

.marian-story .wrap { max-width: 720px; }
.marian-story .wrap p + p { margin-top: 22px; }

/* ============ MARIAN MID ============ */

.marian-mid .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.marian-mid .img-placeholder { aspect-ratio: 1/1; min-height: 280px; }
.marian-mid .big-quote { font-size: clamp(24px, 3.5vw, 40px); max-width: 18ch; margin-bottom: 24px; }
.marian-mid p { margin-top: 24px; }

@media (max-width: 900px) {
  .marian-mid .wrap { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ ADONDE (lista + imagen) ============ */

.adonde .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.adonde h2 { max-width: 18ch; margin-bottom: 8px; }
.adonde .img-placeholder { aspect-ratio: 4/5; }

@media (max-width: 900px) {
  .adonde .wrap { grid-template-columns: 1fr; gap: 40px; }
  .adonde .img-placeholder { aspect-ratio: 16/10; min-height: 220px; }
}

/* ============ SERVICE COLS (empezar — dos bloques privados) ============ */

.service-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(243, 236, 224, 0.15);
  padding-top: 40px;
}

.service-col { padding: 0 48px 0 0; }
.service-col + .service-col { padding: 0 0 0 48px; border-left: 1px solid rgba(243, 236, 224, 0.15); }

.service-col h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--cream-on-dark);
  margin-bottom: 12px;
}

.service-col p { color: var(--muted-on-dark); font-size: 15px; max-width: none; line-height: 1.75; }

@media (max-width: 700px) {
  .service-cols { grid-template-columns: 1fr; }
  .service-col { padding: 0; }
  .service-col + .service-col { padding: 32px 0 0 0; border-left: none; border-top: 1px solid rgba(243,236,224,0.15); }
}

/* ============ EMPEZAR CIERRE ============ */

.empezar-cierre { text-align: center; }
.empezar-cierre .big-quote { max-width: none; font-size: clamp(24px, 4vw, 48px); }

/* ============ PRIVATE DARK (empezar — bloque peso visual) ============ */

.private-dark .wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.private-dark h2 {
  color: var(--cream-on-dark);
  font-size: clamp(36px, 5.5vw, 64px);
}

.private-dark p { color: var(--muted-on-dark); max-width: none; }

.private-dark .link-arrow {
  color: var(--cream-on-dark);
  border-color: var(--cream-on-dark);
  align-self: flex-start;
}

/* ============ EMPEZAR PAGE (opciones section) ============ */

.empezar-page-header { max-width: 640px; margin-bottom: 56px; }
.empezar-page-header .subtitle { margin-top: 20px; }

/* ============ MARIAN PAGE — overrides ============ */

.page-marian .big-quote { max-width: none; }

.page-marian section.light-alt { background: var(--cream-warm); }

/* Separador visual entre secciones claras consecutivas */
.section-divider {
  height: 0;
  display: flex;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.section-divider::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--beige);
}

/* ============ PUNCHY LIST (frases cortas en Cormorant italic) ============ */

.punchy-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 32px 0;
}

.punchy-list p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  max-width: none;
  line-height: 1.4;
}

[data-theme="dark"] .punchy-list p { color: var(--muted-on-dark); }

/* ============ MARIAN NARROW BLOCK ============ */

.marian-block { max-width: 640px; }
.marian-block p + p { margin-top: 20px; }
.marian-block h2 { margin-bottom: 24px; }

/* ============ MARIAN RAIZ BIRTH (dark 2-col) ============ */

.marian-raiz .wrap { position: relative; z-index: 1; }

.marian-raiz-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.marian-raiz-cols .img-placeholder { aspect-ratio: 3/4; min-height: 300px; }

/* .marian-raiz .big-quote — max-width handled by .page-marian override */

@media (max-width: 900px) {
  .marian-raiz-cols { grid-template-columns: 1fr; gap: 36px; }
  .marian-raiz-cols .img-placeholder { aspect-ratio: 4/3; min-height: 220px; }
}

/* ============ LOGO IMAGES (PNG) ============ */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 36px; width: auto; display: block; }
.logo .logo-img-dark { display: none; }
header.dark .logo .logo-img-light { display: none; }
header.dark .logo .logo-img-dark { display: block; }
footer .logo { flex-direction: column; gap: 6px; }
footer .logo img { display: block; height: 32px; }

.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--cacao);
}
header.dark .logo-name { color: var(--cream-on-dark); }
footer .logo-name { color: var(--cream-on-dark); }

/* ============ FOOTER ============ */
footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
footer .logo { color: var(--cream-on-dark); order: 1; }
footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; font-size: 14px; order: 2; }
footer nav a { color: var(--muted-on-dark); }
.footer-social { display: flex; gap: 20px; align-items: center; order: 3; }
.footer-social a { color: var(--muted-on-dark); display: flex; align-items: center; transition: color var(--duration) var(--ease); }
.footer-social a:hover { color: var(--cream-on-dark); }
.footer-copy { font-size: 12px; color: var(--muted-on-dark); opacity: 0.7; max-width: none; order: 4; }
footer .made-with {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted-on-dark);
  opacity: 0.7;
  order: 5;
}

/* ============ LEGAL PAGES ============ */
.legal-body { padding: var(--section-pad) 0; }
.legal-body .wrap { max-width: 780px; }
.legal-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--cacao);
  margin: 48px 0 14px;
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { max-width: none; margin-bottom: 14px; color: var(--text-muted); line-height: 1.75; }
.legal-body ul { list-style: none; padding: 0; margin: 0 0 14px; }
.legal-body ul li { padding-left: 20px; position: relative; color: var(--text-muted); margin-bottom: 8px; line-height: 1.75; }
.legal-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--terracotta); }
.legal-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: var(--section-pad) 0; background: var(--cacao); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-photo .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  min-height: 400px;
}
.contact-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.contact-form-wrap > p {
  max-width: none;
  color: var(--muted-on-dark);
  margin-bottom: 40px;
  line-height: 1.75;
}
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream-on-dark);
  outline: none;
  transition: border-color var(--duration) var(--ease);
  resize: none;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255, 255, 255, 0.7); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--cream-on-dark); opacity: 0.35; }
.contact-form textarea { min-height: 110px; }

.contact-form .rgpd-row { display: flex; gap: 12px; align-items: flex-start; }
.contact-form .rgpd-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--terracotta);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.contact-form .rgpd-row label {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-on-dark);
  line-height: 1.65;
}
.contact-form .rgpd-row label a { color: var(--cream-on-dark); text-decoration: underline; text-underline-offset: 3px; }
.contact-form .rgpd-info {
  font-size: 11px;
  color: var(--muted-on-dark);
  line-height: 1.65;
  max-width: none;
  opacity: 0.75;
  margin: -12px 0 0;
}

.contact-form .btn-submit {
  align-self: flex-start;
  background: var(--cream);
  color: var(--cacao);
  border: none;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.contact-form .btn-submit:hover { background: var(--terracotta); color: var(--cream); }

.contact-direct { padding: var(--section-pad) 0; }
.contact-direct .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  justify-items: center;
  text-align: center;
}
.contact-direct h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--cacao);
  margin-bottom: 24px;
}
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 15px;
  transition: color var(--duration) var(--ease);
}
.contact-links a:hover { color: var(--cacao); }
.contact-links svg { flex-shrink: 0; }
.contact-social-icons { display: flex; gap: 20px; margin-top: 8px; justify-content: center; }
.contact-social-icons a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color var(--duration) var(--ease);
}
.contact-social-icons a:hover { color: var(--cacao); }

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-direct .wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ NAV DROPDOWN ============ */

nav .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 15px;
  transition: color 0.3s var(--ease);
  position: relative;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-toggle::after { width: 100%; }

header.dark .nav-dropdown-toggle { color: var(--muted-on-dark); }
.nav-dropdown-toggle.active { color: var(--text-dark); font-weight: 600; }
header.dark .nav-dropdown-toggle.active { color: var(--cream-on-dark); }

.nav-dropdown-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  opacity: 0.55;
  margin-top: 1px;
}

.nav-dropdown:hover .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream);
  border: 1px solid rgba(74, 63, 51, 0.08);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-width: 176px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  box-shadow: 0 12px 40px rgba(58, 46, 36, 0.1);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover { background: var(--cream-warm); color: var(--text-dark); }
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a.active { color: var(--text-dark); font-weight: 600; }

header.dark .nav-dropdown-menu {
  background: var(--cacao);
  border-color: rgba(243, 236, 224, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
header.dark .nav-dropdown-menu a { color: var(--muted-on-dark); }
header.dark .nav-dropdown-menu a:hover { background: rgba(243, 236, 224, 0.06); color: var(--cream-on-dark); }
header.dark .nav-dropdown-menu a.active { color: var(--cream-on-dark); }

/* ============ STR — SIN TANTO RUIDO ============ */

/* Hero */
.str-hero { overflow: hidden; }

.str-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  min-height: 80vh;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.str-hero h1 { text-align: left; margin: 8px 0 0; }
.str-hero .subtitle { max-width: 44ch; }
.str-hero .btn-primary { margin-top: 36px; display: inline-flex; }
.str-hero .img-placeholder {
  background: none;
  width: 460px;
  height: 540px;
  max-width: 100%;
  min-height: auto;
  aspect-ratio: auto;
}
.str-hero .img-placeholder img {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: 0;
}

@media (max-width: 900px) {
  .str-hero-wrap { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .str-hero .img-placeholder { width: 100%; height: 340px; aspect-ratio: auto; }
}

/* Identificación */
.str-identificacion .wrap { max-width: 680px; }
.str-identificacion p + p { margin-top: 22px; }

.str-closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--cacao);
  margin-top: 44px;
  font-weight: 500;
  max-width: none;
}

/* Reinterpretación */
.str-reinterpretacion .big-quote { max-width: none; margin-bottom: 40px; }
.str-reinterpretacion p { max-width: none; }
.str-reinterpretacion p + p { margin-top: 22px; }

/* Qué es */
.str-que-es .wrap { max-width: 1080px; position: relative; z-index: 1; }
.str-que-es-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.str-que-es-inner .img-placeholder {
  background: none;
  height: auto;
  min-height: auto;
  aspect-ratio: auto;
}
.str-que-es-inner .img-placeholder img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: 0;
}
.str-que-es h2 { margin: 16px 0 36px; }
.str-que-es p + p { margin-top: 20px; }

@media (max-width: 900px) {
  .str-que-es-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Qué incluye / Bonus — dark overrides para method steps */
.str-incluye .wrap { position: relative; z-index: 1; }
.str-incluye h2,
.str-bonus h2 { margin: 16px 0 0; }
.str-incluye .method-steps,
.str-bonus .method-steps { margin-top: 48px; }

[data-theme="dark"] .method-title { color: var(--cream-on-dark); }
[data-theme="dark"] .method-text { color: var(--muted-on-dark); }
[data-theme="dark"] .method-item { border-bottom-color: rgba(243, 236, 224, 0.08); }

/* Deseo */
.str-deseo .wrap { max-width: 680px; }
.str-deseo .eyebrow { margin-bottom: 32px; }
.str-deseo p + p { margin-top: 22px; }

/* Puente */
.str-puente .wrap { max-width: 680px; }
.str-puente p + p { margin-top: 22px; }

/* Separador sutil entre secciones */
.str-divider {
  border: none;
  width: 56px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.3;
  margin: 0 auto;
}

/* Para quién es */
.str-para-quien .wrap { max-width: 720px; }
.str-para-quien .punchy-list { margin: 32px 0 0; }
.str-para-quien .punchy-list p { display: flex; align-items: baseline; gap: 14px; }
.str-para-quien .punchy-list p::before { content: '→'; color: var(--terracotta); font-style: normal; flex-shrink: 0; }

/* Sobre Marian */
.str-marian-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.str-marian-inner .img-placeholder { aspect-ratio: 3/4; min-height: 320px; }
.str-marian-text .eyebrow { margin-bottom: 20px; }
.str-marian-text p + p { margin-top: 22px; }

@media (max-width: 900px) {
  .str-marian-inner { grid-template-columns: 1fr; gap: 40px; }
  .str-marian-inner .img-placeholder { aspect-ratio: 4/3; min-height: 240px; }
}

/* Precio */
.str-precio .wrap { max-width: 640px; }
.str-precio .big-quote { max-width: none; margin-bottom: 32px; }
.str-precio .eyebrow { text-align: left; }

.str-price-display {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 400;
  color: var(--cream-on-dark);
  line-height: 1;
  margin: 32px 0 8px;
}

.str-price-note {
  font-size: 14px;
  color: var(--muted-on-dark);
  max-width: none;
  margin-bottom: 8px;
}
.str-price-note:last-of-type { margin-bottom: 40px; }

.str-price-iva {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted-on-dark);
  vertical-align: middle;
  margin-left: 4px;
}

.str-price-display s {
  opacity: 0.45;
  font-size: 0.55em;
  vertical-align: middle;
  text-decoration-color: var(--muted-on-dark);
}

/* Mockup en sección precio */
.str-precio-mockup {
  margin: 40px auto 0;
  max-width: 320px;
}
.str-precio-mockup img {
  border-radius: 14px;
  width: 100%;
  height: auto;
}

.str-precio-cta {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* STR Checklist */
.str-checklist {
  list-style: none;
  padding: 0;
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.str-checklist li {
  color: var(--muted-on-dark);
  font-size: 15px;
  display: flex;
  gap: 14px;
  align-items: baseline;
  max-width: none;
}

.str-checklist li::before {
  content: '\2713';
  color: var(--terracotta);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-section .wrap { max-width: 720px; }
.faq-section h2 { margin-bottom: 52px; }
.faq-list { list-style: none; padding: 0; }
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-list > .faq-item:first-child { border-top: 1px solid var(--beige); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--cacao);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--terracotta); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.faq-icon svg { transition: stroke 0.2s; }
.faq-item.open .faq-icon svg { stroke: white; }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { color: var(--text-muted); padding-bottom: 28px; max-width: 62ch; }

/* STR Cierre */
.str-cierre { text-align: center; }
.str-cierre .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.str-cierre .big-quote { max-width: none; }

/* ============ MOBILE NAV ============ */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
  flex-shrink: 0;
}

header.dark .nav-toggle { color: var(--cream-on-dark); }

.nav-icon-close { display: none; }
header.nav-open .nav-icon-open { display: none; }
header.nav-open .nav-icon-close { display: block; }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  header nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding-top: 72px;
  }

  header nav.open { display: flex; }

  header.nav-open {
    background: rgba(250, 246, 239, 0.98) !important;
  }

  header nav a { font-size: 20px; color: var(--text-dark) !important; }
  header nav a.active { font-weight: 700; }

  header nav .nav-dropdown { flex-direction: column; align-items: center; gap: 10px; }
  header nav .nav-dropdown-toggle { font-size: 20px; color: var(--text-dark) !important; }
  header nav .nav-dropdown-chevron { display: none !important; }
  header nav .nav-dropdown-toggle::after { display: none !important; }

  header nav .nav-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    min-width: auto !important;
  }

  header nav .nav-dropdown-menu a {
    font-size: 16px !important;
    color: var(--text-muted) !important;
    padding: 5px 0 !important;
    border-radius: 0 !important;
  }

  header nav .nav-dropdown-menu a:hover { background: none !important; }
  header nav .nav-dropdown-menu a.active { color: var(--text-dark) !important; font-weight: 600; }
}

/* ============================================================
   SIN TANTO RUIDO v2 — Complete page redesign
   ============================================================ */

/* Inline color highlight */
.hl { color: var(--terracotta); font-style: italic; }

/* Large display text */
.str2-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
}

/* ---- Hero full-bleed ---- */
.str2-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.str2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(30,22,16,0.80) 0%, rgba(30,22,16,0.50) 45%, rgba(30,22,16,0.10) 70%, transparent 100%),
    linear-gradient(rgba(30,22,16,0.90), rgba(30,22,16,0.90));
  z-index: 0;
}
.str2-hero .wrap { position: relative; z-index: 1; max-width: 560px; }
.str2-hero .eyebrow {
  color: var(--terracotta);
  margin-bottom: 20px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
}
.str2-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 140px);
  font-weight: 400;
  color: var(--cream);
  line-height: 0.9;
  margin: 0 0 36px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.5);
}
.str2-hero .subtitle {
  color: rgba(250,246,239,0.95);
  max-width: 460px;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
}
.str2-hero .str2-hero-note {
  font-size: 12px;
  font-weight: 700;
  color: var(--cream-on-dark);
  letter-spacing: 0.08em;
  margin-top: 16px;
}

/* ---- Apertura ---- */
.str2-apertura { text-align: center; }
.str2-apertura .wrap { max-width: 580px; }
.str2-apertura .str2-display { color: var(--cacao); margin-bottom: 32px; }
.str2-apertura p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---- Polaroid card ---- */
.polaroid {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}
.polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: 0;
}
.polaroid-sm {
  width: 240px;
  height: 300px;
  transform: rotate(-2.5deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.polaroid-lg {
  width: 100%;
  max-width: 620px;
  height: 480px;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 80px rgba(58,46,36,0.15);
  margin: 0 auto;
}
.polaroid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.90) 0%, rgba(20,14,8,0.55) 45%, transparent 72%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.polaroid-overlay p {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 20px);
  font-style: italic;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 2px 20px rgba(0,0,0,0.5);
}
.polaroid-overlay p + p { margin-top: 14px; opacity: 0.85; }

/* ---- La herida ---- */
.str2-herida-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}
.str2-herida-text .lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream-on-dark);
  margin-bottom: 28px;
}
.str2-herida-text p { color: var(--cream-on-dark); }
.str2-herida-text p + p { margin-top: 20px; }
.str2-herida-text .str-closing {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-style: italic;
  color: var(--cream-on-dark);
  margin-top: 28px;
}

/* ---- Diagnóstico ---- */
.str2-diagnostico { text-align: center; }
.str2-diagnostico .wrap { max-width: 640px; }
.str2-diagnostico .str2-display { color: var(--cacao); margin-bottom: 28px; }
.str2-diagnostico p { font-style: italic; color: var(--text-muted); }
.str2-diagnostico p + p { margin-top: 12px; }

/* ---- Peligro ---- */
.str2-peligro { text-align: center; }
.str2-peligro .wrap { max-width: 640px; }
.str2-peligro .str2-display { color: var(--cream-on-dark); margin-bottom: 36px; }
.str2-peligro p { color: var(--cream-on-dark); opacity: 0.8; }
.str2-peligro p + p { margin-top: 20px; }

/* ---- Photo pause ---- */
.photo-pause {
  position: relative;
  height: 62vh;
  min-height: 340px;
  background-size: cover;
  background-position: center 60%;
  overflow: hidden;
}
.photo-pause-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,22,16,0.24);
  padding: 40px;
}
.photo-pause-text p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-style: italic;
  color: var(--cream);
  text-align: center;
  max-width: 480px;
}

/* ---- Por qué pasa ---- */
.str2-porque-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}
.str2-porque-text .eyebrow { margin-bottom: 24px; }
.str2-porque-text p + p { margin-top: 22px; }

/* ---- Nueva posibilidad ---- */
.str2-posibilidad .wrap { max-width: 680px; }
.str2-posibilidad .lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream-on-dark);
  margin-bottom: 36px;
}
.str2-posibilidad p { color: var(--cream-on-dark); opacity: 0.82; }
.str2-posibilidad p + p { margin-top: 22px; }
.str2-posibilidad .str-closing {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-style: italic;
  color: var(--cream-on-dark);
  margin-top: 36px;
  opacity: 1;
}

/* ---- El después ---- */
.str2-despues .wrap { max-width: 680px; }

/* ---- Quién soy ---- */
.str2-quien-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: start;
}
.str2-quien-photo {
  width: 300px;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(58,46,36,0.12);
}
.str2-quien-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: 0;
}
.str2-quien-text .eyebrow { margin-bottom: 20px; }
.str2-quien-text p + p { margin-top: 22px; }
.str2-quien-text .str-closing {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-style: italic;
  margin-top: 28px;
}

/* ---- Qué es dark ---- */
.str2-que-es-dark { text-align: center; }
.str2-que-es-dark .wrap { max-width: 680px; }
.str2-que-es-dark .str2-display { color: var(--cream-on-dark); margin-bottom: 28px; }
.str2-que-es-dark p { color: var(--cream-on-dark); opacity: 0.78; margin-bottom: 40px; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ---- Qué incluye alternado ---- */
.str2-incluye .wrap { max-width: 1000px; }
.str2-incluye > .wrap > h2 { text-align: center; margin-bottom: 72px; }
.str2-incluye-items { display: flex; flex-direction: column; gap: 80px; }
.str2-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.str2-item.reverse { grid-template-columns: auto 1fr; }
.str2-item.reverse .str2-item-photo { order: -1; }
.str2-item-num {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 14px;
  font-weight: 600;
}
.str2-item-text h3 { font-size: clamp(19px, 2vw, 24px); margin-bottom: 14px; }
.str2-item-text p { color: var(--text-muted); max-width: 48ch; line-height: 1.75; }
.str2-item-photo {
  width: 300px;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 16px 48px rgba(58,46,36,0.1);
}
.str2-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: 0;
}

/* ---- Lo que cambia ---- */
.str2-cambia { text-align: center; }
.str2-cambia .wrap { max-width: 560px; }
.str2-cambia .str2-display { color: var(--cream-on-dark); margin-bottom: 56px; }
.str2-cambia-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.str2-cambia-list li {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  color: var(--cream-on-dark);
  line-height: 1.5;
  opacity: 0.85;
}

/* ---- Bonus cards ---- */
.str2-bonus .wrap { max-width: 1000px; }
.str2-bonus .eyebrow { margin-bottom: 0; }
.str2-bonus > .wrap > h2 { margin-top: 8px; margin-bottom: 56px; }
.str2-bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.str2-bonus-card {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--beige);
}
.str2-bonus-card .method-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.str2-bonus-card h3 { font-size: clamp(17px, 1.6vw, 20px); margin-bottom: 12px; }
.str2-bonus-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ---- Para quién ---- */
.str2-para-quien .wrap { max-width: 720px; position: relative; z-index: 1; }
.str2-para-quien .str-closing {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-style: italic;
  margin-top: 36px;
}
.str2-para-quien .punchy-list { margin: 32px 0 0; }
.str2-para-quien .punchy-list p { display: flex; align-items: baseline; gap: 14px; }
.str2-para-quien .punchy-list p::before { content: '→'; color: var(--terracotta); font-style: normal; flex-shrink: 0; }

/* ---- Precio comparativa ---- */
.str2-precio-comparativa {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.str2-precio-comparativa p {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.str2-precio-comparativa p::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  opacity: 0.7;
}

/* ---- FAQ + Contacto dos columnas ---- */
.str2-faq-contacto .wrap { max-width: 1000px; }
.str2-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}
.str2-contacto h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 14px; }
.str2-contacto > p { color: var(--text-muted); margin-bottom: 32px; }
.str2-contacto-links { display: flex; flex-direction: column; gap: 16px; }
.str2-contacto-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cacao);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.str2-contacto-link:hover { color: var(--terracotta); }

/* ---- Cierre full-bleed ---- */
.str2-cierre {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.str2-cierre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,22,16,0.64);
  z-index: 0;
}
.str2-cierre .wrap {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.str2-cierre .big-quote { max-width: none; color: var(--cream-on-dark); }
.str2-cierre .big-quote .cream-word { color: var(--cream); }
.str2-cierre p { color: var(--cream-on-dark); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .str2-herida-inner { grid-template-columns: 1fr; gap: 40px; }
  .polaroid-sm { width: 100%; height: 360px; transform: none; box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
  .polaroid-lg { height: 360px; transform: none; }
  .str2-porque-inner { grid-template-columns: 1fr; gap: 40px; }
  .str2-porque-polaroid { order: 2; }
  .str2-quien-inner { grid-template-columns: 1fr; gap: 40px; }
  .str2-quien-photo { width: 100%; height: 400px; order: 2; }
  .str2-item { grid-template-columns: 1fr; gap: 32px; }
  .str2-item.reverse { grid-template-columns: 1fr; }
  .str2-item.reverse .str2-item-photo { order: 0; }
  .str2-item-photo { width: 100%; height: 320px; }
  .str2-bonus-cards { grid-template-columns: 1fr; gap: 16px; }
  .str2-faq-inner { grid-template-columns: 1fr; gap: 52px; }
  .str2-hero h1 { font-size: clamp(52px, 14vw, 90px); }
  .str2-hero { background-position: right center; }
}

@media (max-width: 600px) {
  .str2-cierre::before { background: rgba(250,246,239,0.68); }
  .str2-cierre .big-quote { color: var(--cacao); }
  .str2-cierre .big-quote .cream-word { text-shadow: 0 1px 10px rgba(20,14,8,0.55), 0 2px 24px rgba(20,14,8,0.4); }
}
