/* ==========================================================================
   DAISY BALZA - FACILITADORA EN PROCESOS DE CAMBIO
   Mentorías que Transforman
   Design System: Calidez Humana, Sofisticación, Claridad y Claridad Visual
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & COLOR PALETTE
   -------------------------------------------------------------------------- */
:root {
  /* Paleta cromática serena basada en bienestar, tierra y naturaleza */
  --color-bg: #FCFBF9;             /* Crema suave / Blanco roto */
  --color-bg-card: #F5F1EB;        /* Beige arena cálido */
  --color-bg-card-hover: #ECE6DD;  /* Hover para tarjetas */
  --color-primary: #7C9070;        /* Verde Salvia Suave - Identidad principal */
  --color-primary-hover: #687B5C;  /* Salvia más profundo para hover */
  --color-primary-light: #EBF0E9;  /* Tinte sutil de salvia */
  --color-terracotta: #C87D65;     /* Terracota cálido - Énfasis y dinamismo */
  --color-terracotta-light: #F8EFEA;
  --color-terracotta-hover: #B56C55;

  --color-text-main: #2D3748;      /* Carbón grafito oscuro (legibilidad óptima) */
  --color-text-muted: #5A6578;     /* Texto secundario de lectura */
  --color-text-light: #7E8C9F;     /* Leyendas y datos contextuales */

  --color-white: #FFFFFF;
  --color-border: rgba(124, 144, 112, 0.22);
  --color-border-light: rgba(45, 55, 72, 0.08);

  /* Tipografías */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Sombras y Glassmorphism */
  --shadow-sm: 0 4px 12px rgba(45, 55, 72, 0.04);
  --shadow-md: 0 10px 30px rgba(45, 55, 72, 0.07);
  --shadow-hover: 0 16px 36px rgba(124, 144, 112, 0.18);
  --glass-bg: rgba(252, 251, 249, 0.92);
  --glass-blur: blur(16px) saturate(160%);

  /* Transiciones */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tipografía */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  color: var(--color-text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   3. ANIMACIONES Y EFECTOS VISUALES
   -------------------------------------------------------------------------- */
.fade-in-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   4. NAVEGACIÓN (STICKY HEADER)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  padding: 0.85rem 2rem;
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.logo-brand:hover .logo-symbol {
  background: var(--color-primary);
  color: var(--color-white);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 1.85rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-main);
  padding: 0.4rem;
}

/* Botones UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(124, 144, 112, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (EDITORIAL LUXURY PORTRAIT & TYPOGRAPHY)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 7.5rem 2rem 4.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-card) 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
}

.hero-title .highlight {
  color: var(--color-primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-body-text {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.hero-guarantee {
  display: flex;
  gap: 1.75rem;
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.guarantee-item svg {
  color: var(--color-primary);
}

/* Columna de Retrato de Daisy Balza */
.hero-portrait-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.portrait-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(124, 144, 112, 0.28) 0%, rgba(200, 125, 101, 0.18) 50%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: 1;
  filter: blur(18px);
}

.hero-portrait-img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 4px solid var(--color-white);
  box-shadow: 0 20px 45px rgba(45, 55, 72, 0.14);
}

.hero-portrait-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(252, 251, 249, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.portrait-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-badge-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.portrait-badge-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.portrait-badge-role {
  font-size: 0.72rem;
  color: var(--color-terracotta);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. QUOTE CALLOUT SECTION (CITA DE ACEPTACIÓN)
   -------------------------------------------------------------------------- */
.quote-callout-section {
  background: var(--color-bg-card);
  padding: 4.5rem 2rem;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.quote-callout-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-symbol {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.35;
  margin-bottom: -1.5rem;
}

.quote-callout-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.quote-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   7. SECCIÓN SESIONES: ENFOQUE & METODOLOGÍA
   -------------------------------------------------------------------------- */
.section {
  padding: 5.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}

.about-text-box {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  justify-content: center;
}

.about-text-box p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-quote {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--color-terracotta);
  background: var(--color-terracotta-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text-main);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Metodología Tarjeta Contenedora */
.methodology-card-box {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.methodology-main-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
  color: var(--color-text-main);
}

.methodology-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pillar-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-fast);
}

.pillar-item:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  padding-top: 0.15rem;
}

.pillar-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-text-main);
}

.pillar-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.methodology-footer-note {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  align-items: flex-start;
}

.methodology-footer-note p {
  font-size: 0.86rem;
  color: var(--color-text-main);
  line-height: 1.55;
}

/* Intención y Cuestionamiento Grid */
.intent-reflection-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: stretch;
}

.intent-card, .reflection-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.intent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.reflection-badge {
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
}

.intent-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.intent-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.intent-text:last-of-type {
  margin-bottom: 0;
}

.life-dynamic-callout {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--color-terracotta-light);
  border-left: 3px solid var(--color-terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.life-dynamic-callout p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. CREDENCIALES DAISY BALZA SECTION
   -------------------------------------------------------------------------- */
.credentials-section {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.credential-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-smooth);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.credential-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}

.credential-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #FFFFFF 0%, #F3F7F1 100%);
  border: 1px solid rgba(124, 144, 112, 0.35);
  padding: 2.25rem;
}

.credential-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-card.featured .credential-icon {
  width: 58px;
  height: 58px;
  background: var(--color-primary);
  color: var(--color-white);
}

.credential-body {
  flex: 1;
}

.credential-tag, .credential-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 0.35rem;
}

.credential-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.credential-card.featured .credential-title {
  font-size: 1.35rem;
}

.credential-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. PROFUNDIZA (ARTÍCULOS Y ENSAYOS)
   -------------------------------------------------------------------------- */
.profundiza-section {
  background: var(--color-bg);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}

.article-category {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.article-excerpt {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.btn-read-article {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.btn-read-article:hover {
  color: var(--color-primary-hover);
  transform: translateX(3px);
}

/* Modal de Lectura de Artículos */
.article-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.article-modal-container {
  background: var(--color-white);
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.article-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-main);
  z-index: 10;
  transition: var(--transition-fast);
}

.article-modal-close:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.article-modal-body {
  padding: 3rem 2.5rem 2.5rem;
  overflow-y: auto;
}

.article-modal-category {
  color: var(--color-terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.article-modal-title {
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article-modal-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.35rem;
}

.article-modal-text strong {
  color: var(--color-text-main);
}

.article-modal-quote {
  padding: 1.25rem 1.75rem;
  margin: 1.75rem 0;
  background: var(--color-bg-card);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

/* --------------------------------------------------------------------------
   10. AGENDADOR ONLINE EXECUTIVE (2 COLUMNAS LUXURY DESIGN)
   -------------------------------------------------------------------------- */
.booking-section {
  background: var(--color-bg-card);
  padding: 6rem 2rem;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.booking-executive-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.25rem;
  align-items: start;
}

/* Tarjeta de Información Izquierda */
.booking-details-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.booking-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background: #34A853;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(52, 168, 83, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0);
  }
}

.booking-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #E8F0FE;
  color: #1A73E8;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-host-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
}

.booking-host-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.booking-host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-host-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.booking-host-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}

.booking-host-role {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.booking-host-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-terracotta);
  font-weight: 700;
  margin-top: 0.15rem;
}

.booking-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.perk-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-text-main);
  margin-bottom: 0.15rem;
}

.perk-text p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.booking-steps-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.3rem;
}

.steps-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text-main);
  margin-bottom: 0.65rem;
}

.booking-steps-ol {
  padding-left: 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-steps-ol li {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.booking-help-box {
  background: var(--color-terracotta-light);
  border: 1px solid rgba(200, 125, 101, 0.25);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking-help-box .help-text span {
  font-size: 0.82rem;
  color: var(--color-text-main);
  font-weight: 600;
}

.btn-chat-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #FFF;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.btn-chat-direct:hover {
  background: #20BD5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* Tarjeta Widget Derecha */
.booking-widget-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.widget-card-header {
  padding: 1.25rem 1.75rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.widget-secure-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.calendly-embed-container {
  min-height: 720px;
  background: var(--color-white);
  width: 100%;
}

.widget-card-footer {
  padding: 0.9rem 1.5rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   11. PREGUNTAS FRECUENTES (FAQ ACCORDION)
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-main);
  gap: 1rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-content p {
  margin-bottom: 0.75rem;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. WIDGET FLOTANTE DE WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  background-color: #25D366;
  color: #FFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--color-text-main);
  color: var(--color-white);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.5rem;
  width: 100%;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE MEDIA QUERIES (ULTRA-ALTA EXPERIENCIA DE USUARIO MÓVIL UX)
   -------------------------------------------------------------------------- */

/* Touch & Fluid Base */
html {
  -webkit-text-size-adjust: 100%;
}

button, a, .nav-link, .faq-header, .btn-read-article, .btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-actions, .hero-guarantee {
    justify-content: center;
  }
  .hero-portrait-col {
    margin: 0 auto;
  }
  .hero-portrait-frame {
    max-width: 320px;
    margin: 0 auto;
  }
  .about-grid, .intent-reflection-grid, .booking-executive-wrapper {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .section {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Header & Menú Móvil Glassmorphism */
  .header {
    padding: 0.75rem 1.25rem;
  }
  .header.scrolled {
    padding: 0.65rem 1.25rem;
  }
  .nav-container {
    height: auto;
  }
  .logo-text {
    font-size: 1.15rem;
  }
  .logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
  }
  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(252, 251, 249, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.1rem;
    box-shadow: 0 15px 35px rgba(45, 55, 72, 0.12);
    display: none;
    border-bottom: 1px solid var(--color-border);
    animation: mobileMenuSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes mobileMenuSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-menu.mobile-open {
    display: flex;
  }
  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-main);
  }
  .nav-cta {
    display: none;
  }

  /* Hero Mobile: Retrato de Daisy visible y destacado arriba */
  .hero {
    padding: 5.75rem 1.25rem 3.5rem;
    min-height: auto;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    text-align: center;
  }
  .hero-portrait-col {
    order: -1;
    margin: 0 auto 0.5rem;
  }
  .hero-portrait-frame {
    max-width: 195px;
    margin: 0 auto;
  }
  .hero-portrait-img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    border: 4px solid var(--color-white);
    box-shadow: 0 14px 32px rgba(45, 55, 72, 0.18);
  }
  .portrait-glow {
    border-radius: 50%;
  }
  .hero-portrait-badge {
    bottom: -12px;
    padding: 0.4rem 0.9rem;
    gap: 0.4rem;
  }
  .portrait-badge-icon {
    width: 24px;
    height: 24px;
  }
  .portrait-badge-name {
    font-size: 0.82rem;
  }
  .portrait-badge-role {
    font-size: 0.62rem;
  }

  .hero-content {
    max-width: 100%;
  }
  .hero-pill {
    margin: 0.25rem auto 1rem;
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
  }
  .hero-title {
    font-size: 2.15rem;
    line-height: 1.2;
    margin-bottom: 0.85rem;
  }
  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
  }
  .hero-body-text {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }
  .hero-guarantee {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border-light);
  }
  .guarantee-item {
    font-size: 0.85rem;
  }

  /* Secciones Generales */
  .section {
    padding: 3.75rem 1.25rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }

  /* Cita Callout */
  .quote-callout-section {
    padding: 2.75rem 1.25rem;
  }
  .quote-callout-text {
    font-size: 1.15rem;
    line-height: 1.55;
  }
  .quote-symbol {
    font-size: 3rem;
    top: -1rem;
  }

  /* Metodología y Enfoque */
  .about-text-box, .methodology-card-box {
    padding: 1.6rem 1.25rem;
    border-radius: var(--radius-lg);
  }
  .methodology-pillars {
    gap: 1.1rem;
  }
  .pillar-item {
    gap: 0.85rem;
  }
  .pillar-number {
    font-size: 1.35rem;
    min-width: 28px;
  }
  .intent-card, .reflection-card {
    padding: 1.6rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  /* Credenciales */
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .credential-card {
    padding: 1.35rem 1.15rem;
  }

  /* Artículos Profundiza */
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .article-card {
    padding: 1.6rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  /* Modal de Artículos Full-Screen en Móviles */
  .article-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .article-modal-container {
    max-height: 94vh;
    height: 94vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    width: 100%;
  }
  .article-modal-body {
    padding: 2rem 1.35rem 1.75rem;
    -webkit-overflow-scrolling: touch;
  }
  .article-modal-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .article-modal-text p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .article-modal-close {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
  }

  /* Booking & Calendly en Móvil */
  .booking-section {
    padding: 3.75rem 1rem;
  }
  .booking-details-card {
    padding: 1.6rem 1.25rem;
    border-radius: var(--radius-lg);
  }
  .booking-host-profile {
    gap: 0.85rem;
  }
  .booking-host-avatar {
    width: 54px;
    height: 54px;
  }
  .booking-host-name {
    font-size: 1.15rem;
  }
  .booking-widget-card {
    border-radius: var(--radius-lg);
  }
  .widget-card-header {
    padding: 0.9rem 1.15rem;
  }
  .calendly-embed-container {
    min-height: 680px;
  }

  /* FAQ Móvil */
  .faq-header {
    padding: 1.1rem 1.15rem;
    font-size: 0.95rem;
  }
  .faq-item.active .faq-content {
    padding: 0 1.15rem 1.15rem 1.15rem;
    font-size: 0.9rem;
  }

  /* WhatsApp Flotante Móvil con Safe Area */
  .whatsapp-float {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-tooltip {
    display: none;
  }

  /* Footer */
  .footer {
    padding: 2.75rem 1.25rem calc(5rem + env(safe-area-inset-bottom, 0px));
  }
  .footer-nav {
    flex-direction: column;
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-pill {
    white-space: normal;
    text-align: center;
  }
  .booking-badge-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
