/* ==========================================================
   MENTE SANA BY DR — DESIGN SYSTEM v3.0
   Reinvención completa. Una fuente. Una paleta. Cero ruido.
   ========================================================== */

/* ── FUENTE ÚNICA ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ── BASE SVG ICON SIZE — prevents icons from rendering at natural viewBox size ── */
.icon-svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ── VARIABLES ── */
:root {
  /* Colores principales */
  --cream:         #faf6f2;
  --cream-alt:     #f4f8fb;
  --white:         #ffffff;
  --coral:         #c97a5e;
  --coral-dark:    #a85f45;
  --coral-light:   #f5e5db;
  --coral-xlight:  #fdf4f0;
  --earth:         #152f3a;
  --blue:          #1A4655;
  --teal-bg:       #edf4f7;
  --stone:         #4a6272;
  --stone-light:   #7090a0;
  --sage:          #6a8064;
  --sage-light:    #e8f0e5;
  --sep:           rgba(21, 47, 58, 0.1);
  --wa:            #25d366;
  --wa-dark:       #1ebe5d;

  /* Tipografía */
  --font:          'Plus Jakarta Sans', system-ui, sans-serif;

  /* Tamaños de fuente fluidos */
  --text-xs:       0.75rem;
  --text-sm:       0.875rem;
  --text-base:     1rem;
  --text-md:       1.0625rem;
  --text-lg:       1.125rem;
  --text-xl:       1.25rem;

  /* Espaciado */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Sombras */
  --shadow-xs: 0 1px 4px rgba(21,47,58,0.07);
  --shadow-sm: 0 2px 10px rgba(21,47,58,0.09);
  --shadow-md: 0 4px 24px rgba(21,47,58,0.11);
  --shadow-lg: 0 8px 48px rgba(21,47,58,0.13);

  /* Radios */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 999px;

  /* Transiciones */
  --ease:        all 0.22s ease;
  --ease-slow:   all 0.38s ease;

  /* Máximos de ancho */
  --max-w:     1160px;
  --max-w-sm:  760px;
  --max-w-xs:  560px;
}

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

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

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--earth);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── TIPOGRAFÍA BASE ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  line-height: 1.18;
  color: var(--earth);
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600; }
h5 { font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

p { font-size: var(--text-md); line-height: 1.75; color: var(--stone); }
p + p { margin-top: var(--sp-4); }

strong { font-weight: 700; color: var(--earth); }
em { font-style: italic; }

/* ── UTILIDADES ── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 var(--sp-6); }
.container-xs { max-width: var(--max-w-xs); margin: 0 auto; padding: 0 var(--sp-6); }

.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-coral    { color: var(--coral); }
.text-stone    { color: var(--stone); }
.text-muted    { color: var(--stone-light); }
.text-earth    { color: var(--earth); }

/* ── LABEL DE SECCIÓN (eyebrow) ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--sp-4);
}

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 15px var(--sp-8);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}

/* Botón primario: Coral */
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,122,94,0.32);
}
.btn-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 6px 28px rgba(201,122,94,0.42);
  transform: translateY(-1px);
}

/* Botón WhatsApp */
.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
}
.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 28px rgba(37,211,102,0.38);
  transform: translateY(-1px);
}

/* Botón secundario: coral relleno suave */
.btn-outline {
  background: var(--white);
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

/* Botón ghost: borde suave */
.btn-ghost {
  background: transparent;
  color: var(--stone);
  border: 1.5px solid var(--sep);
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* Botón grande */
.btn-lg {
  padding: 18px var(--sp-10);
  font-size: var(--text-base);
}

/* Botón pequeño */
.btn-sm {
  padding: 10px var(--sp-5);
  font-size: var(--text-xs);
}

/* Sub-texto de CTA (bajo los botones) */
.cta-sub {
  font-size: var(--text-xs);
  color: var(--stone-light);
  margin-top: var(--sp-3);
  letter-spacing: 0.02em;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-coral  { background: var(--coral-light); color: var(--coral-dark); }
.badge-cream  { background: var(--cream-alt); color: var(--stone); border: 1px solid var(--sep); }
.badge-sage   { background: var(--sage-light); color: var(--sage); }
.badge-verify { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }

/* ── PILLS DE INFO ── */
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--sep);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--stone);
  backdrop-filter: blur(4px);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,246,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sep);
  transition: var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--earth);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
/* Hide broken logo image; show text instead */
.logo img { display: none; }
.logo::before {
  content: 'Mente Sana';
  font-weight: 800;
  color: var(--earth);
}
.logo::after {
  content: ' by DR';
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--coral);
  letter-spacing: 0;
  margin-left: 4px;
}
.logo span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--stone-light);
  letter-spacing: 0;
}

/* Nav desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-desktop a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.18s;
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--coral); }

/* Botón header CTA */
.header-cta {
  padding: 8px 14px !important;
  border-radius: var(--radius-pill) !important;
  background: var(--wa) !important;
  color: var(--white) !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(37,211,102,0.22);
}
.header-cta:hover {
  background: var(--wa-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.32);
}
.header-cta svg { width: 15px !important; height: 15px !important; }

/* Botón hamburguesa (ambas clases: legacy + nueva) */
.mobile-toggle,
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-toggle span,
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--earth);
  border-radius: 2px;
  transition: var(--ease);
}

/* Nav mobile */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--sep);
  padding: var(--sp-4) var(--sp-6);
  gap: var(--sp-1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: var(--sp-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--stone);
  border-bottom: 1px solid var(--sep);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--coral); }

/* Body offset para header fijo */
body { padding-top: 68px; }

/* ── SECCIONES: espaciado ── */
.section-pad    { padding: var(--sp-24) 0; }
.section-pad-lg { padding: var(--sp-32) 0; }
.section-pad-sm { padding: var(--sp-16) 0; }

/* Fondos alternantes */
.bg-cream       { background: var(--cream); }
.bg-white       { background: var(--white); }
.bg-coral-xl    { background: var(--coral-xlight); }
.bg-coral-l     { background: var(--coral-light); }
.bg-sage-l      { background: var(--sage-light); }

/* ── TARJETAS GENÉRICAS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-coral { background: var(--coral-xlight); border: 1px solid var(--coral-light); }
.card-sage  { background: var(--sage-light); border: 1px solid rgba(106,128,100,0.18); }
.card-cream { background: var(--cream); border: 1px solid var(--sep); }

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }

/* ── STATS BAR ── */
.stats-row {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--stone-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--sep);
}

/* ── TESTIMONIOS ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--coral-light);
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-6);
}
.testimonial-text {
  font-size: var(--text-base);
  line-height: 1.78;
  color: var(--stone);
  font-style: italic;
  padding-top: var(--sp-6);
  position: relative;
  z-index: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--sep);
}
.testimonial-author {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--earth);
}
.testimonial-meta {
  font-size: var(--text-xs);
  color: var(--stone-light);
  margin-top: 2px;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.verified-badge svg { flex-shrink: 0; }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--sep);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.open {
  border-color: var(--coral-light);
  box-shadow: var(--shadow-xs);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--earth);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.18s;
}
.faq-question:hover { color: var(--coral); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--sep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  color: var(--stone-light);
}
.faq-item.open .faq-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.75;
  border-top: 1px solid var(--sep);
}
.faq-answer p { margin-top: var(--sp-4); font-size: var(--text-base); }
.faq-item.open .faq-answer { display: block; }

/* ── SERVICIO CARDS ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  border: 1.5px solid var(--sep);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--coral);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.service-card.sage-card::before { background: var(--sage); }
.service-card:hover {
  border-color: var(--coral-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card.sage-card:hover { border-color: var(--sage-light); }

.service-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-2);
}
.service-card.sage-card .service-price { background: var(--sage-light); }
.price-per {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--stone-light);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-2) 0;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.5;
}
.service-feature-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--coral);
  margin-top: 1px;
}
.service-card.sage-card .service-feature-icon { color: var(--sage); }

.cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: auto;
}
.cta-group .btn { width: 100%; }

/* ── PROCESO / PASOS ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1.5px;
  background: var(--coral-light);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(201,122,94,0.3);
  flex-shrink: 0;
}
.step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--earth);
}
.step-desc {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.65;
}

/* ── BENEFIT CARDS (¿Por qué trabajar conmigo?) ── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.benefit-card {
  padding: var(--sp-7) var(--sp-6);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--earth);
  line-height: 1.3;
}
.benefit-desc {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.65;
}

/* Paleta de tarjetas de beneficios */
.bc-1 { background: var(--coral-xlight); }
.bc-1 .benefit-icon { background: var(--coral-light); color: var(--coral); }
.bc-2 { background: var(--sage-light); }
.bc-2 .benefit-icon { background: rgba(106,128,100,0.2); color: var(--sage); }
.bc-3 { background: #fef9ec; }
.bc-3 .benefit-icon { background: #fef3c7; color: #d97706; }
.bc-4 { background: #f0f7ff; }
.bc-4 .benefit-icon { background: #dbeafe; color: #2563eb; }
.bc-5 { background: #fdf4f8; }
.bc-5 .benefit-icon { background: #fce7f3; color: #db2777; }
.bc-6 { background: #f5f5ff; }
.bc-6 .benefit-icon { background: #ede9fe; color: #7c3aed; }

/* ── HERO BASE (para páginas internas) ── */
.hero-inner-page {
  padding: var(--sp-20) 0 var(--sp-16);
  background: var(--cream);
  border-bottom: 1px solid var(--sep);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--sp-4);
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--earth);
  letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; font-weight: 700; color: var(--coral); }
.hero-sub {
  font-size: var(--text-lg);
  color: var(--stone);
  line-height: 1.7;
  max-width: 560px;
  margin-top: var(--sp-5);
}

/* ── FOTO CIRCULAR DE DANIELA ── */
.daniela-photo {
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--coral-light);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.daniela-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── PULLQUOTE ── */
.pullquote {
  border-left: 3px solid var(--coral);
  padding: var(--sp-5) var(--sp-8);
  background: var(--coral-xlight);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--earth);
  line-height: 1.65;
  font-weight: 500;
}

/* ── SEPARADOR ── */
.divider {
  height: 1px;
  background: var(--sep);
  margin: var(--sp-8) 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--earth);
  color: rgba(255,255,255,0.75);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer h3 {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}
.footer h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-4);
}
.footer p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.footer ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.18s;
}
.footer ul li a:hover { color: var(--coral); }

/* Rating Google en footer */
.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-5);
  text-decoration: none;
  transition: var(--ease);
}
.footer-rating:hover { background: rgba(255,255,255,0.12); }
.footer-rating-score {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--white);
}
.footer-rating-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

/* Social links */
.social-links {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--ease);
}
.social-links a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.footer-bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* ── BOTÓN FLOTANTE WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 9000;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--ease);
  text-decoration: none;
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: scale(1.08);
  box-shadow: 0 8px 36px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ── CREDENCIAL ACADÉMICA ── */
.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--stone);
  background: var(--cream-alt);
  border: 1px solid var(--sep);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  letter-spacing: 0.03em;
}

/* ── DISCLAIMER LEGAL ── */
.legal-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  margin-top: var(--sp-4);
}

/* ── DOLOR CARDS (para páginas de servicio) ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.pain-card {
  padding: var(--sp-7);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--sep);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: var(--ease);
}
.pain-card:hover {
  border-color: var(--coral-light);
  box-shadow: var(--shadow-sm);
}
.pain-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.pain-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--earth);
  line-height: 1.3;
}
.pain-desc {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.7;
}

/* ── TIMELINE / FORMACIÓN ── */
.timeline { display: flex; flex-direction: column; gap: var(--sp-5); }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-5);
  align-items: start;
}
.timeline-year {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--coral);
  background: var(--coral-xlight);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
  border: 1px solid var(--coral-light);
}
.timeline-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--earth);
  margin-bottom: var(--sp-1);
}
.timeline-content p {
  font-size: var(--text-sm);
  color: var(--stone-light);
}

/* ── BLOQUE DANIELA (home) ── */
.daniela-home-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-16);
  align-items: center;
}

/* ── CTA SECTION FINAL ── */
.cta-final {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-final h2 {
  margin-bottom: var(--sp-4);
}
.cta-final p {
  margin-bottom: var(--sp-8);
  font-size: var(--text-lg);
}
.cta-buttons {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cta-buttons-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

/* ── SEPARADOR VISUAL CTA DUAL ── */
.or-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--stone-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sep);
}

/* ── PAGE HEADER DE BLOG / TÉRMINOS ── */
.page-header {
  background: var(--cream);
  padding: var(--sp-20) 0 var(--sp-12);
  border-bottom: 1px solid var(--sep);
  text-align: center;
}

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--sep);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--coral-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.blog-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--earth);
  line-height: 1.35;
  margin: 0;
}
.blog-meta {
  display: flex;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--stone-light);
  margin-top: auto;
}
.blog-read-more {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  transition: gap 0.18s;
}
.blog-read-more:hover { gap: var(--sp-3); }

/* ── PÁGINA GRACIAS ── */
.thanks-section {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-16);
}
.thanks-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--coral-light);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-6);
}

/* ── TÉRMINOS Y CONDICIONES ── */
.legal-content h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--earth);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}
.legal-content p, .legal-content li {
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.8;
}
.legal-content ul { list-style: disc; padding-left: var(--sp-6); }
.legal-content li { margin-bottom: var(--sp-2); }

/* ────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────*/

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .daniela-home-grid { grid-template-columns: 220px 1fr; gap: var(--sp-10); }
}

@media (max-width: 768px) {
  body { padding-top: 60px; }

  .header-inner { height: 60px; }
  .nav-desktop { display: none; }
  .header-cta { display: none !important; }
  .mobile-toggle,
  .mobile-menu-btn { display: flex; }

  h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }
  h2 { font-size: clamp(1.35rem, 5vw, 1.85rem); }

  .section-pad    { padding: var(--sp-12) 0; }
  .section-pad-lg { padding: var(--sp-16) 0; }
  .section-pad-sm { padding: var(--sp-8) 0; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .steps-row { grid-template-columns: 1fr; gap: var(--sp-6); }
  .pain-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .daniela-home-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .daniela-photo { width: 180px; height: 180px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; max-width: 380px; margin: 0 auto; }

  /* Steps CTA button full width on mobile */
  .steps-cta { width: 100%; display: flex; justify-content: center; }
  .steps-cta .btn { width: 100%; max-width: 360px; }

  .stats-row { gap: var(--sp-5); }
  .stat-divider { display: none; }

  .container, .container-sm, .container-xs {
    padding: 0 var(--sp-5);
  }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .hero-h1 { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  /* Reducir padding de secciones en móvil */
  .section-pad    { padding: var(--sp-10) 0; }
  .section-pad-lg { padding: var(--sp-12) 0; }
  .section-pad-sm { padding: var(--sp-8) 0; }

  /* Botones grandes más compactos */
  .btn-lg { padding: 15px var(--sp-6); font-size: var(--text-sm); }

  /* Tarjetas con menos padding */
  .service-card { padding: var(--sp-6); }
  .testimonial-card { padding: var(--sp-5); }
  .card { padding: var(--sp-5); }

  /* Márgenes laterales más estrechos */
  .container, .container-sm, .container-xs {
    padding: 0 var(--sp-4);
  }

  /* Botón flotante WA */
  .wa-float { bottom: var(--sp-4); right: var(--sp-4); width: 52px; height: 52px; }

  /* CTA final más compacto */
  .cta-final p { font-size: var(--text-base) !important; }
  .cta-sub { font-size: 0.78rem; }
}

/* ── INSTAGRAM STRIP ── */
.ig-strip {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  padding: var(--sp-4) 0;
}
.ig-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  color: var(--white);
  flex-wrap: wrap;
  text-align: center;
}
.ig-strip-inner svg { flex-shrink: 0; opacity: 0.9; }
.ig-strip-inner span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.ig-strip-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 16px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill);
  transition: var(--ease);
  flex-shrink: 0;
}
.ig-strip-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── NAV ACTIVE STATE ── */
.nav-desktop a[aria-current="page"] {
  color: var(--coral);
  font-weight: 700;
}

/* ── ANIMACIONES SUAVES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.5s ease forwards; }

/* ── SCROLL SUAVE ── */
html { scroll-behavior: smooth; }

/* ── SELECCIÓN DE TEXTO ── */
::selection {
  background: var(--coral-light);
  color: var(--earth);
}

/* ==========================================================
   COMPONENTES v3.1 — NUEVAS PÁGINAS REINVENTADAS
   ========================================================== */

/* ── SECCIÓN BASE ── */
.section {
  padding: var(--sp-24) 0;
}
.section-alt {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--sp-3);
}
.section-eyebrow.light { color: rgba(255,255,255,0.65); }
.section-sub {
  font-size: var(--text-lg);
  color: var(--stone);
  line-height: 1.72;
  margin-top: var(--sp-4);
}

/* .mobile-menu-btn is defined in the main header section above */

/* ── HERO HOME ── */
.hero {
  padding: var(--sp-24) 0 var(--sp-16);
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-12);
  align-items: center;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.hero-stars span:first-child {
  font-size: 1.15rem;
  color: #f59e0b;
  letter-spacing: 2px;
}
.hero-stars-label {
  font-size: var(--text-xs);
  color: var(--stone-light);
  font-weight: 500;
}
.hero h1 {
  margin-bottom: var(--sp-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--stone);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: var(--sp-8);
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: stretch;
  margin-bottom: var(--sp-6);
}
.hero-ctas .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.hero-ctas .or-divider {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--sep);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--stone);
  backdrop-filter: blur(4px);
}
.hero-photo-wrap {
  position: relative;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  object-fit: cover;
  display: block;
  max-height: 440px;
}
.hero-name-card {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--shadow-md);
  text-align: center;
  white-space: nowrap;
  font-size: var(--text-xs);
  color: var(--stone);
  line-height: 1.5;
}
.hero-name-card strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 2px;
}

/* ── BTN-SUB (texto pequeño dentro de botones) ── */
.btn-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.02em;
  margin-top: 3px;
  line-height: 1.3;
}

/* ── BTN VARIANTES SOBRE FONDOS OSCUROS ── */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 15px var(--sp-8);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  background: rgba(255,255,255,0.22);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--ease);
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.36);
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px var(--sp-6);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--ease);
  text-decoration: none;
  cursor: pointer;
}
.btn-ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ── OR DIVIDER ── */
.or-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--stone-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
  max-width: 380px;
}
.or-divider.light { color: rgba(255,255,255,0.45); }
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sep);
}
.or-divider.light::before, .or-divider.light::after {
  background: rgba(255,255,255,0.18);
}
.or-divider span { white-space: nowrap; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blue);
  padding: var(--sp-8) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}
.stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}
.stats-bar .stat-number {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stats-bar .stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── RESONANCE / PARALLAX CARDS ── */
.resonance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.resonance-card {
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: var(--ease);
}
.resonance-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.resonance-icon {
  font-size: 2rem;
  line-height: 1;
}
.resonance-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--earth);
  line-height: 1.3;
}
.resonance-card p {
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.72;
}
.resonance-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
  transition: gap 0.18s;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: auto;
}
.resonance-link:hover { gap: var(--sp-3); }

/* ── DANIELA SECTION (home) ── */
.daniela-section {
  padding: var(--sp-24) 0;
  background: var(--teal-bg);
}
.daniela-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.daniela-photo-col img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.daniela-text-col .section-eyebrow { color: var(--coral); }
.daniela-text-col h2 {
  color: var(--earth);
  margin-bottom: var(--sp-5);
}
.daniela-text-col p {
  color: var(--stone);
  margin-bottom: var(--sp-4);
}
.daniela-text-col .credential-tag {
  background: rgba(21,47,58,0.06);
  border-color: rgba(21,47,58,0.12);
  color: var(--stone);
  margin-bottom: var(--sp-6);
}
.daniela-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
  align-items: center;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: var(--sp-24) 0;
  background: var(--cream);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--sp-4);
  align-items: start;
  margin-bottom: var(--sp-12);
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: var(--ease);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(201,122,94,0.3);
}
.step-card h3 { font-size: var(--text-lg); font-weight: 700; color: var(--earth); }
.step-card p  { font-size: var(--text-sm); color: var(--stone); line-height: 1.7; }
.step-connector {
  font-size: 1.6rem;
  color: var(--coral-light);
  font-weight: 300;
  padding-top: var(--sp-6);
  flex-shrink: 0;
  align-self: flex-start;
}
.steps-cta { text-align: center; }

/* ── SERVICES SECTION ── */
.services { padding: var(--sp-24) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  max-width: 900px;
  margin: 0 auto;
}
.service-individual { border-top-color: var(--coral); }
.service-pareja::before { background: var(--sage) !important; }
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--coral-xlight);
  color: var(--coral-dark);
  align-self: flex-start;
}
.service-tag-sage {
  background: var(--sage-light);
  color: var(--sage);
}
.service-name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--earth);
  line-height: 1.25;
}
.price-amount {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.04em;
  line-height: 1;
}
.service-pareja .price-amount { color: var(--sage); }
.price-per {
  font-size: var(--text-sm);
  color: var(--stone-light);
  font-weight: 400;
  margin-left: 4px;
}
.service-desc {
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.72;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.5;
}
.service-features li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-pareja .service-features li::before { color: var(--sage); }
.service-ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: auto;
}
.service-ctas .btn { flex: 1; min-width: 130px; }
.service-more {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--stone-light);
  text-decoration: none;
  transition: color 0.18s;
  text-align: center;
}
.service-more:hover { color: var(--coral); }

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--sp-24) 0; background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.testimonial-stars {
  font-size: 1rem;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}
.testimonial-card blockquote p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--stone);
  font-style: italic;
}
.testimonial-card footer.testimonial-author {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--sep);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card footer.testimonial-author strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--earth);
}
.testimonial-card footer.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--stone-light);
}

/* ── FAQ SECTION ── */
.faq-section { padding: var(--sp-24) 0; background: var(--white); }
.faq-container { max-width: 760px; margin: 0 auto; }

/* ── CTA FINAL SECTION ── */
.cta-final {
  background: var(--coral);
  padding: var(--sp-24) 0;
  border-bottom: 4px solid var(--coral-dark);
}
/* Sub-text on coral bg */
.cta-final .cta-sub { color: rgba(255,255,255,0.80); }
/* WA button on coral bg: white button for contrast */
.cta-final .btn-wa {
  background: var(--white);
  color: var(--earth);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}
.cta-final .btn-wa svg { fill: var(--wa); }
.cta-final .btn-wa:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}
.cta-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.cta-container h2 { color: var(--white); }
.cta-container p  { color: rgba(255,255,255,0.85); }
.cta-dual-calendly {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── FOOTER v3 ── */
.footer-brand { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.55); line-height: 1.75; }
.footer-brand img { max-width: 140px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.footer-logo span {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--coral);
  margin-left: 4px;
  letter-spacing: 0;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav li a, .footer-contact li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-nav li a:hover, .footer-contact li a:hover { color: var(--coral); }
.footer-contact li { display: flex; align-items: center; gap: var(--sp-2); }
.footer-contact li svg { flex-shrink: 0; opacity: 0.6; }
.footer-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.footer-rating-text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.footer-rating-text a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 760px;
}
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: underline; }

/* ── WA FLOAT TOOLTIP ── */
.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--earth);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── PAGE HERO (páginas internas) ── */
.page-hero {
  padding: var(--sp-20) 0 var(--sp-16);
  background: var(--cream);
  border-bottom: 1px solid var(--sep);
}
.page-hero-individual { background: var(--coral-xlight); }
.page-hero-pareja     { background: var(--sage-light); }
.page-hero-daniela    { background: var(--cream-alt); }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-12);
  align-items: center;
}
.page-hero-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.page-hero-photo {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-lg);
  display: block;
}
.page-hero-text h1 { margin-top: var(--sp-4); margin-bottom: var(--sp-5); }
.page-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-2);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--sp-6);
}
.price-main {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-detail {
  font-size: var(--text-sm);
  color: var(--stone-light);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--stone-light);
  margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--coral); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SESIÓN INFO (páginas de servicio) ── */
.sesion-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-12);
  align-items: start;
}
.sesion-info { display: flex; flex-direction: column; gap: var(--sp-8); }
.sesion-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}
.sesion-num {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--coral);
  background: var(--coral-xlight);
  border: 1.5px solid var(--coral-light);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-3);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.sesion-item h3 { font-size: var(--text-base); font-weight: 700; color: var(--earth); margin-bottom: var(--sp-2); }
.sesion-item p  { font-size: var(--text-sm); color: var(--stone); line-height: 1.7; }
.sesion-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--sep);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: sticky;
  top: 88px;
}
.sesion-card h3 { font-size: var(--text-lg); font-weight: 800; color: var(--earth); }
.sesion-details { display: flex; flex-direction: column; gap: var(--sp-3); list-style: none; }
.sesion-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.5;
}
.sesion-details li svg { color: var(--coral); flex-shrink: 0; margin-top: 1px; }

/* ── SOBRE DANIELA — CONTENIDO ── */
.sobre-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-12);
  align-items: start;
}
.sobre-text { display: flex; flex-direction: column; gap: var(--sp-2); }
.sobre-text p { font-size: var(--text-base); color: var(--stone); line-height: 1.8; }
.sobre-text h2 { margin-bottom: var(--sp-6); }
.sobre-sidebar { display: flex; flex-direction: column; gap: var(--sp-5); position: sticky; top: 88px; }
.credential-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1.5px solid var(--sep);
  box-shadow: var(--shadow-xs);
}
.credential-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--earth); margin-bottom: var(--sp-4); }
.credential-list { display: flex; flex-direction: column; gap: var(--sp-3); list-style: none; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.6;
}
.credential-dot { color: var(--coral); font-size: 0.5rem; margin-top: 5px; flex-shrink: 0; }
.credential-disclaimer {
  background: var(--coral-xlight);
  border-color: var(--coral-light);
}
.credential-disclaimer p { font-size: var(--text-xs); color: var(--stone); line-height: 1.72; }
.credential-tag-hero {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--stone);
  background: var(--cream-alt);
  border: 1px solid var(--sep);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-top: var(--sp-5);
}
.sobre-social { margin-top: var(--sp-4); }

/* Botón Instagram hero — se queda en ancho natural en desktop */
.btn-ig { align-self: flex-start; }

/* ── BENEFIT CARD TEXT STYLES ── */
.benefit-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--earth); line-height: 1.3; }
.benefit-card p  { font-size: var(--text-sm); color: var(--stone); line-height: 1.7; }
.benefit-icon    { font-size: 1.8rem; line-height: 1; display: flex; align-items: center; }

/* ── SVG ICON SYSTEM ── */
/* Benefit / resonance icons */
.benefit-icon .icon-svg,
.resonance-icon .icon-svg {
  width: 2.2rem !important;
  height: 2.2rem !important;
  stroke: var(--coral);
  flex-shrink: 0;
}
/* Pill inline icons */
.pill .icon-svg {
  width: 14px !important;
  height: 14px !important;
  vertical-align: -2px;
  stroke: var(--coral);
  flex-shrink: 0;
  display: inline-block;
  margin-right: 2px;
}
/* Stat bar icon */
.stat-number .icon-svg {
  width: 2rem !important;
  height: 2rem !important;
  stroke: var(--coral);
  vertical-align: middle;
}
/* Sobre Daniela - resonance icons in .por-que section */
.por-que-cards .resonance-icon .icon-svg,
.resonance-cards .resonance-icon .icon-svg {
  stroke: var(--blue);
}

/* ── RESPONSIVE NUEVOS COMPONENTES ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero-visual { display: block; }
  .hero-ctas { align-items: stretch; }
  .or-divider { max-width: 100%; }
  .daniela-grid { grid-template-columns: 1fr; }
  .daniela-photo-col { max-width: 360px; margin: 0 auto; }
  .sesion-grid { grid-template-columns: 1fr; }
  .sesion-card { position: static; }
  .sobre-content { grid-template-columns: 1fr; }
  .sobre-sidebar { position: static; }
  /* Hero grid: text first, photo stacked below */
  .page-hero-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .page-hero-text, .hero-text { min-width: 0; }
  .page-hero-visual { display: block; max-width: 460px; margin: 0 auto; }
  .page-hero-photo { max-height: 320px; object-fit: cover; object-position: top center; }
  .steps-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .step-connector { display: none; }
  .resonance-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Tipografía hero */
  .hero h1 br { display: none; }
  .page-hero h1 br { display: none; }
  /* Sobre Daniela: mantener el salto de línea entre "Soy Daniela Rozo." y el resto */
  .page-hero-daniela h1 br { display: inline; }

  /* Hero CTAs: ancho completo y centradas */
  .hero-ctas { width: 100%; align-items: stretch; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-ctas .or-divider { width: 100%; }

  /* Sección Daniela */
  .daniela-grid { text-align: center; }
  .daniela-ctas { justify-content: center; }
  .daniela-ctas .btn { width: 100%; max-width: 320px; }

  /* Grids → columna */
  .resonance-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
  .benefit-grid { grid-template-columns: 1fr; }
  .sesion-item { flex-direction: column; gap: var(--sp-3); }

  /* Service cards CTAs */
  .service-ctas { flex-direction: column; gap: var(--sp-3); }
  .service-ctas .btn { width: 100%; justify-content: center; }

  /* CTA dual Calendly */
  .cta-dual-calendly { flex-direction: column; align-items: stretch; gap: var(--sp-3); }
  .cta-dual-calendly .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }

  /* CTA final */
  .cta-container { padding: 0 var(--sp-2); }
  .cta-final p { font-size: var(--text-base); }
  .cta-final h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  /* Or divider a todo el ancho */
  .or-divider { width: 100%; max-width: 100%; }

  /* Pills en hero: wrap más compacto */
  .hero-pills { gap: var(--sp-2); }
  .pill { font-size: 0.72rem; padding: 5px 10px; }

  /* Page price badge */
  .page-price-badge { flex-wrap: wrap; }

  /* ── Sobre Daniela hero: evitar overflow horizontal ── */
  .page-hero-text, .hero-text { min-width: 0; overflow: hidden; }
  .credential-tag-hero {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    max-width: 100%;
    width: fit-content;
  }
  .btn-ig {
    align-self: stretch;
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  /* Secciones principales: padding reducido */
  .section        { padding: var(--sp-10) 0; }
  .section-alt    { padding: var(--sp-10) 0; }
  .hero           { padding: var(--sp-10) 0; }
  .stats-bar      { padding: var(--sp-5) 0; }
  .cta-final      { padding: var(--sp-12) 0; }
  .testimonials   { padding: var(--sp-10) 0; }
  .faq-section    { padding: var(--sp-10) 0; }
  .how-it-works   { padding: var(--sp-10) 0; }
  .services       { padding: var(--sp-10) 0; }
  .daniela-section { padding: var(--sp-10) 0; }
  .page-hero      { padding: var(--sp-8) 0 var(--sp-8); }

  /* Stats: 2 columnas */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero foto más pequeña en móvil pequeño */
  .page-hero-visual { max-width: 320px; }
  .page-hero-photo  { max-height: 260px; }

  /* Price badge en columna */
  .page-price-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-1);
  }

  /* FAQ compacto */
  .faq-question { font-size: var(--text-sm); padding: var(--sp-4) var(--sp-5); }

  /* Blog cards */
  .blog-card-img { height: 180px; }

  /* Section headers más pequeños */
  .section-header { margin-bottom: var(--sp-8); }
}
