/* ===================================================
   QIAURA TERAPIAS – styles.css
   Paleta: lino puro · arena suave · dorado claro · marrón cálido ligero
   Tipografía: Cormorant Garamond + Jost
=================================================== */

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

/* ── VARIABLES: ORO Y SEDA (Dorado elegante) ── */
:root {
  /* ── Fondos — Blanco puro y linos muy luminosos ── */
  --c-bg:        #ffffff;   /* Blanco puro, base principal */
  --c-bg-2:      #fdfbf7;   /* Blanco roto muy sutil para diferenciar secciones */
  --c-bg-3:      #fcf8f2;   /* Fondo crema/oro levísimo */
  --c-bg-4:      #f9f4e8;   /* Beige arena muy suave */

  /* ── Acentos — Dorado empolvado / Champagne ── */
  --c-gold:      #cba770;   /* Dorado base suave */
  --c-gold-lt:   #e4cca3;   /* Dorado luz para detalles */
  --c-gold-pale: #fcf8f2;   /* Toque mínimo de luz para fondos de tarjetas */
  --c-gold-btn:  #b59253;   /* Dorado con más fuerza para que los botones sean legibles */

  /* ── Títulos — Marrón piedra/tostado (muy suave) ── */
  --c-brown:     #8a715a;   /* Tostado para subtítulos */
  --c-brown-dk:  #5c4a3d;   /* Marrón chocolate suave para títulos principales */

  /* ── Texto — Gris pardo cálido ── */
  --c-text:      #69594f;   
  --c-text-2:    #8b7c72;   
  --c-text-3:    #b3a69d;   

  /* ── Oscuro — Solo para elementos de contraste ── */
  --c-dark:      #3b3027;   
  --c-dark-2:    #4a3d32;


  /* ── Alias semánticos (¡No tocar!) ── */
  --bg:          var(--c-bg);
  --gold:        var(--c-gold);
  --text:        var(--c-text);
  --muted:       var(--c-text-3);

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', system-ui, sans-serif;

  --r:    12px;
  --r-lg: 20px;

  --sh:    0 2px 16px rgba(92,74,61,.05);
  --sh-md: 0 6px 28px rgba(92,74,61,.08);
  --sh-lg: 0 14px 48px rgba(92,74,61,.12);

  --max-w:  1180px;
  --py:     96px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header.light .section-eyebrow { color: var(--c-gold-lt); }
.section-header.light .section-title   { color: var(--c-bg); }
.section-header.light .section-title em{ color: var(--c-gold-pale); }
.section-header.light .section-desc    { color: rgba(253,250,245,.65); }

.section-eyebrow {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold-btn);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-brown-dk);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--c-brown); }
.section-desc { color: var(--c-text-2); font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 13px 30px;
  border-radius: 60px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--c-gold-btn);
  color: #fff;
  border-color: var(--c-gold-btn);
}
.btn-primary:hover {
  background: var(--c-brown-dk);
  border-color: var(--c-brown-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78,53,32,.25);
}
.btn-ghost {
  background: transparent;
  color: rgba(253,250,245,.9);
  border-color: rgba(253,250,245,.4);
}
.btn-ghost:hover {
  background: rgba(253,250,245,.1);
  border-color: rgba(253,250,245,.7);
}
.btn-outline {
  background: transparent;
  color: var(--c-gold-btn);
  border-color: var(--c-gold);
}
.btn-outline:hover { background: var(--c-gold-btn); color: #fff; }

.btn-gold {
  background: var(--c-gold-pale);
  color: var(--c-brown-dk);
  border-color: var(--c-gold);
}
.btn-gold:hover {
  background: var(--c-gold-btn);
  color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   NAVBAR (Adaptado a diseño claro)
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 24px;
  transition: background .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96); /* Ahora la barra al bajar es blanca */
  backdrop-filter: blur(14px);
  box-shadow: var(--sh);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 38px; 
  width: auto; 
  object-fit: contain;
}
.nav-logo-fallback {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-brown-dk); /* Texto del logo oscuro */
}
.logo-symbol { color: var(--c-gold-btn); }
.logo-text   { color: var(--c-brown-dk); }

/* Enlaces del menú */
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .82rem;
  color: var(--c-brown-dk); /* Letras oscuras para que destaquen en el blanco */
  letter-spacing: .04em;
  transition: color .2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--c-gold-btn); }

/* Botón Contacto del menú */
.nav-cta {
  background: var(--c-gold-btn) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 60px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--c-brown-dk) !important; transform: translateY(-1px) !important; }

/* Botón móvil (las 3 rayitas) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--c-brown-dk); /* Rayitas oscuras */
  transition: all .3s;
}

/* ══════════════════════════════════════
   HERO (Diseño Inmersión)
══════════════════════════════════════ */
.hero-immersion {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--c-bg); /* Blanco base por si tarda en cargar */
}

/* Envoltorio del fondo (Vídeo + Velo) */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Vídeo y foto de respaldo a pantalla completa */
.hero-video,
.hero-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* El Velo Mágico de Luz (85% blanco opaco) */
.hero-white-veil {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); 
  z-index: 2;
}

/* Contenido por encima del velo */
.hero-immersion-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
  padding: 120px 24px 60px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo - Lo oscurecemos un poco para que se vea sobre el blanco */
.hero-logo-fade {
  margin-bottom: 24px;
}
.hero-logo-fade .hero-logo-img {
  height: 55px;
  margin: 0 auto;
  width: auto; 
  object-fit: contain;
}

/* Textos */
.hero-immersion .hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 18px;
}

.hero-immersion .hero-title {
  font-family: var(--font-d);
  color: var(--c-brown-dk);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-immersion .hero-title em {
  font-style: italic;
  color: var(--c-brown);
}

.hero-immersion .hero-subtitle {
  color: var(--c-text-2);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Botones y Badge de Regalo */
.hero-immersion .hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-badge-light {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--c-bg-2);
  border: 1px solid rgba(194,160,88,0.2);
  border-radius: 60px;
  font-size: 0.85rem;
  color: var(--c-brown-dk);
}
.hero-badge-light strong {
  color: var(--c-gold-btn);
}

/* Indicador Scroll (La rayita que baja) */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 54px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--c-gold-lt), transparent);
  animation: sline 2s ease-in-out infinite;
}

/* Ajustes para móviles */
@media (max-width: 640px) {
  .hero-immersion-content {
    padding-top: 100px;
  }
  .hero-immersion .hero-title {
    font-size: 2.6rem;
  }
  .hero-immersion .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ══════════════════════════════════════
   SOBRE MÍ
══════════════════════════════════════ */
.about {
  position: relative; padding: var(--py) 0;
  background: var(--c-bg); overflow: hidden;
}
.about-deco {
  position: absolute; top: 0; right: 0;
  width: 38%; height: 100%;
  background: var(--c-bg-2);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.about-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-frame {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-lg);
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform .6s ease;
}
.about-image-frame:hover .about-photo { transform: scale(1.03); }
.about-image-ornament {
  position: absolute; inset: 0;
  border: 1px solid rgba(194,160,88,.3);
  border-radius: var(--r-lg); margin: 14px; pointer-events: none;
}
.about-stat-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--c-gold-btn); color: #fff;
  padding: 18px 22px; border-radius: var(--r);
  text-align: center; box-shadow: var(--sh-md);
}
.stat-num {
  display: block; font-family: var(--font-d);
  font-size: 2.2rem; font-weight: 600; line-height: 1;
}
.stat-label { display: block; font-size: .75rem; opacity: .9; margin-top: 4px; letter-spacing: .06em; }
.about-lead {
  font-family: var(--font-d); font-size: 1.2rem; font-style: italic;
  font-weight: 300; color: var(--c-brown); margin-bottom: 14px; line-height: 1.45;
}
.about-text p { color: var(--c-text-2); margin-bottom: 13px; }
.about-values { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { color: var(--c-gold); font-size: .9rem; margin-top: 5px; flex-shrink: 0; }
.value-item strong { display: block; color: var(--c-brown-dk); font-size: .94rem; margin-bottom: 2px; }
.value-item p { font-size: .86rem; color: var(--c-text-3); margin: 0; }

/* ══════════════════════════════════════
   PÉNDULO HEBREO (Rediseño Editorial Premium)
══════════════════════════════════════ */
.feat-section {
  position: relative; 
  padding: var(--py) 0; 
  background: var(--c-bg);
  overflow: hidden;
}

.feat-header {
  position: relative; z-index: 1;
  text-align: center; margin-bottom: 60px;
}
.light-ey { color: var(--c-gold-btn) !important; }

.feat-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300; color: var(--c-brown-dk); 
  line-height: 1.1; margin-bottom: 14px;
}
.feat-title em { font-style: italic; color: var(--c-brown); }
.feat-subtitle { font-size: 1.05rem; color: var(--c-text-2); max-width: 540px; margin: 0 auto; }

/* Grid principal */
.feat-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  gap: 60px; align-items: start;
  max-width: 1080px; margin: 0 auto;
}

@media (min-width: 960px) {
  .feat-layout {
    grid-template-columns: 1.1fr 0.9fr; /* Columna de texto un pelín más ancha */
    gap: 70px;
  }
}

/* Textos de la columna izquierda */
.feat-lead {
  font-family: var(--font-d); font-size: 1.15rem;
  font-style: italic; color: var(--c-brown);
  margin-bottom: 14px; line-height: 1.5;
}
.feat-copy p { color: var(--c-text-2); margin-bottom: 13px; line-height: 1.6; }

/* ── LA MAGIA DE LA FOTO (Sin recortes) ── */
.feat-photo-frame {
  position: relative;
  margin: 45px 0;
  padding: 12px;
  background: var(--c-bg);
  border: 1px solid var(--c-gold-pale);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  /* Un giro súper sutil para que parezca una foto apoyada */
  transform: rotate(-1.5deg);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feat-photo-frame:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 20px 40px rgba(92,74,61,.12);
}

.feat-photo-frame img {
  width: 100%;
  /* Esto garantiza que no se corte absolutamente NADA */
  height: auto; 
  display: block;
  border-radius: var(--r);
}

.feat-photo-badge {
  position: absolute;
  bottom: 30px;
  right: -15px;
  background: var(--c-bg-2);
  color: var(--c-brown-dk);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-gold-lt);
}

/* Cita y Lista */
.feat-callout {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--c-bg-2); border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 18px; margin: 25px 0;
  box-shadow: var(--sh);
}
.feat-callout-icon { color: var(--c-gold); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.feat-callout p {
  font-family: var(--font-d); font-style: italic;
  font-size: 1.05rem; color: var(--c-brown); margin: 0; line-height: 1.5;
}

.feat-sub {
  font-family: var(--font-d); font-size: 1.25rem;
  font-weight: 400; color: var(--c-brown-dk); margin-bottom: 16px;
}
.check-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--c-text-2);
  padding: 9px 14px; background: var(--c-bg-2);
  border-radius: var(--r); border: 1px solid var(--c-bg-3);
}
.check-list li::before {
  content: '✦'; color: var(--c-gold); font-size: .72rem;
  flex-shrink: 0; margin-top: 3px;
}
/* --- NUEVA ZONA INFERIOR PÉNDULO --- */
.feat-bottom-cta {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(194,160,88,0.2); /* Una línea sutil para separar */
}

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

.text-center.feat-sub {
  margin-bottom: 30px; /* Separar un poco el título de la lista */
}

/* Convertimos la lista en una cuadrícula automática */
.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

/* Asegurarnos de que las cajitas de la lista midan lo mismo de alto */
.grid-list li {
  height: 100%; 
}

/* ── CARDS ESCALONADAS DERECHA ── */
.feat-cards-staggered {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .feat-cards-staggered {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 30px;
  }
  .card-up { transform: translateY(-30px); }
  .card-down { transform: translateY(30px); }
}

.mini-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-gold-pale);
  padding: 30px 25px;
  border-radius: var(--r-lg);
  transition: all 0.4s ease;
  height: fit-content;
}

.mini-card:hover {
  background: var(--c-bg);
  border-color: var(--c-gold-lt);
  box-shadow: var(--sh-lg);
  transform: translateY(calc(var(--y-offset, 0px) - 10px)) !important;
}

.mc-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.mini-card h4 {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 600;
  color: var(--c-brown-dk); margin-bottom: 8px;
}
.mini-card p { font-size: .85rem; color: var(--c-text-3); margin-bottom: 14px; line-height: 1.52; }
.mc-link {
  font-size: .78rem; font-weight: 500; color: var(--c-gold-btn);
  letter-spacing: .04em; transition: color .2s;
}
.mc-link:hover { color: var(--c-brown-dk); }

/* Marca de agua decorativa */
.feat-section::after {
  content: '✦'; position: absolute; bottom: -50px; left: -50px;
  font-size: 350px; color: var(--c-gold-pale); opacity: 0.4;
  z-index: 0; pointer-events: none;
}

/* ══════════════════════════════════════
   SERVICIOS & TERAPIAS
══════════════════════════════════════ */
.services { padding: var(--py) 0; background: var(--c-bg); }

/* --- 1. REJILLA PRINCIPAL (Terapias Principales) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px; /* Espacio de respiro antes del apéndice */
  align-items: start; /* Para que las tarjetas abracen su contenido y no dejen huecos */
}

.service-card {
  background: var(--c-bg-2);
  border: 1px solid rgba(194,160,88,.2);
  border-radius: var(--r-lg); 
  padding: 38px 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px); 
  box-shadow: var(--sh-md); 
  border-color: var(--c-gold);
}

.service-icon { font-size: 1.8rem; margin-bottom: 14px; }

.service-card h3 {
  font-family: var(--font-d); 
  font-size: 1.45rem;
  font-weight: 400; 
  color: var(--c-brown-dk); 
  margin-bottom: 6px;
}

.svc-tagline {
  font-family: var(--font-b);
  font-style: normal;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card p { 
  font-size: .88rem; 
  color: var(--c-text-2); 
  margin-bottom: 9px; 
  line-height: 1.65; 
}

.service-link {
  display: inline-block;
  font-size: .82rem; 
  font-weight: 500; 
  color: var(--c-gold-btn);
  letter-spacing: .04em; 
  transition: color .2s;
}

.service-link:hover { color: var(--c-brown-dk); }

/* --- LÓGICA DEL ACORDEÓN --- */
.toggle-btn {
  background: none;
  border: none;
  border-top: 1px solid rgba(194,160,88,.2); /* Línea separadora elegante */
  color: var(--c-gold-btn);
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 18px;
  margin-top: 0;
  transition: color 0.3s;
}

.toggle-btn:hover { color: var(--c-brown-dk); }

.toggle-icon {
  font-size: 1.4rem; 
  font-weight: 300; 
  transition: transform 0.3s ease;
}

.service-card.is-open .toggle-icon { transform: rotate(45deg); }

.service-more-info {
  display: grid;
  grid-template-rows: 0fr; /* Altura 0 por defecto */
  transition: grid-template-rows 0.4s ease;
  margin-top: 0;
}

.service-more-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card.is-open .service-more-info {
  grid-template-rows: 1fr; /* Se expande a su altura real */
  margin-top: 15px;
}

.service-more-inner .service-link {
  margin-top: 15px;
  align-self: flex-start;
}

/* --- 2. APÉNDICE: OTRAS SESIONES --- */
.otras-sesiones-appendix {
  background: var(--c-bg-2);
  border-radius: var(--r-lg);
  padding: 50px;
  margin-bottom: 40px;
  border: 1px solid rgba(194,160,88, 0.15);
}

.appendix-header { text-align: center; margin-bottom: 35px; }

.appendix-icon { font-size: 1.5rem; display: block; margin-bottom: 10px; }

.appendix-header h3 {
  font-family: var(--font-d); 
  font-size: 1.8rem;
  color: var(--c-brown-dk); 
  margin-bottom: 8px;
}

.appendix-header p { 
  font-size: 0.9rem; 
  color: var(--c-text-3); 
  font-style: italic; 
}

.appendix-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.appendix-list li {
  font-size: 0.85rem; 
  color: var(--c-text-2);
  display: flex; 
  align-items: center; 
  gap: 8px;
}

.appendix-list li::before {
  content: '✦'; 
  color: var(--c-gold); 
  font-size: 0.7rem;
}

.appendix-link {
  display: block; 
  text-align: center; 
  font-size: 0.85rem;
  font-weight: 500; 
  color: var(--c-gold-btn);
  text-decoration: underline; 
  text-underline-offset: 4px;
}

/* --- 3. BANNER: CONSULTA GRATUITA --- */
.cta-free-banner {
  background: linear-gradient(to right, var(--c-bg-3), var(--c-bg-4));
  border-radius: var(--r-lg); 
  padding: 60px;
  text-align: center; 
  position: relative; 
  overflow: hidden;
}

/* Decoración lateral de la estrella */
.cta-free-banner::after {
  content: '✦'; 
  position: absolute; 
  top: -20px; 
  right: 20px;
  font-size: 8rem; 
  color: var(--c-gold-pale); 
  opacity: 0.5; 
  z-index: 0;
}

.banner-content { position: relative; z-index: 1; }

.banner-badge {
  display: inline-block; 
  background: var(--c-gold-btn); 
  color: white;
  padding: 4px 12px; 
  border-radius: 4px; 
  font-size: 0.7rem;
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-bottom: 20px;
}

.cta-free-banner h3 {
  font-family: var(--font-d); 
  font-size: 2.2rem;
  color: var(--c-brown-dk); 
  margin-bottom: 15px;
}

.cta-free-banner p {
  max-width: 600px; 
  margin: 0 auto 30px;
  color: var(--c-text-2); 
  line-height: 1.6;
}

.banner-actions {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 15px;
}

.banner-note { 
  font-size: 0.8rem; 
  color: var(--c-text-3); 
  font-style: italic; 
}

/* ══════════════════════════════════════
   CÓMO FUNCIONA
══════════════════════════════════════ */
.how-it-works { padding: var(--py) 0; background: var(--c-gold-pale); }
.steps-row { display: flex; align-items: flex-start; }
.step { flex: 1; padding: 0 20px; text-align: center; }
.step-num {
  font-family: var(--font-d); font-size: 3rem; font-weight: 300;
  color: rgba(194,160,88,.4); line-height: 1; margin-bottom: 14px;
}
.step h4 {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 400;
  color: var(--c-brown-dk); margin-bottom: 8px;
}
.step p { font-size: .86rem; color: var(--c-text-2); line-height: 1.6; }
.step-arrow { color: rgba(194,160,88,.4); font-size: 1.4rem; margin-top: 38px; flex-shrink: 0; }

/* ══════════════════════════════════════
   manifestación DE MANIFESTACIÓN
══════════════════════════════════════ */
/* ─────────────────────────────────────────────
   manifestación & MÉTODO AURE (Rediseño Premium)
───────────────────────────────────────────── */
.manifestación-section {
  padding: var(--py) 0;
  background-color: var(--c-bg); /* Blanco puro */
  position: relative;
  overflow: hidden;
}

.manifestación-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.manifestación-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--c-brown-dk);
  line-height: 1.1;
  margin-bottom: 15px;
}

.manifestación-title em {
  font-style: italic;
  color: var(--c-brown);
}

.manifestación-lead {
  font-size: 1.15rem;
  color: var(--c-text-2);
  line-height: 1.6;
  margin-top: 20px;
}

/* Pilares horizontales */
.manifestación-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}

.manifestación-pillar {
  text-align: center;
  padding: 35px 25px;
  background: var(--c-bg-2); /* Lino claro */
  border-radius: var(--r);
  border: 1px solid var(--c-gold-pale);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manifestación-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.pillar-icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.manifestación-pillar strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.25rem;
  color: var(--c-brown-dk);
  margin-bottom: 8px;
  font-weight: 400;
}

.manifestación-pillar p {
  font-size: 0.88rem;
  color: var(--c-text-3);
  line-height: 1.5;
}

/* ── CAJA DESTACADA: MÉTODO AURE ── */
.aure-highlight-box {
  background: var(--c-bg-2);
  border: 1px solid rgba(203, 167, 112, 0.15); /* Dorado muy suave */
  border-radius: var(--r-lg);
  padding: 60px;
  position: relative;
  box-shadow: var(--sh-lg);
}

.aure-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.aure-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--c-gold-pale);
  color: var(--c-gold-btn);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
}

.aure-main-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--c-brown-dk);
  margin-bottom: 30px;
  line-height: 1;
}

.aure-main-title em {
  font-style: italic;
  color: var(--c-brown);
}

.p-highlight {
  font-size: 1.15rem;
  color: var(--c-brown);
  line-height: 1.7;
  margin-bottom: 20px;
}

.aure-text-content p {
  color: var(--c-text-2);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.aure-quote {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-gold-btn);
  padding-left: 25px;
  border-left: 2px solid var(--c-gold-lt);
  margin: 35px 0;
  line-height: 1.5;
}

.aure-final {
  font-weight: 500;
  color: var(--c-brown-dk);
  margin-bottom: 35px;
  font-size: 1rem;
}

/* Imagen y decoración */
.aure-visual {
  position: relative;
}

.aure-image-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.aure-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.aure-image-wrapper:hover .aure-img {
  transform: scale(1.05);
}

.aure-deco-circle {
  position: absolute;
  top: -30px; 
  right: -30px;
  width: 180px; 
  height: 180px;
  background: var(--c-gold-pale);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .aure-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aure-highlight-box {
    padding: 40px 25px;
  }
  .aure-visual {
    order: -1; /* La imagen arriba en tablets/móvil */
    max-width: 400px;
    margin: 0 auto;
  }
  .aure-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .manifestación-pillars {
    grid-template-columns: 1fr;
  }
  .aure-main-title {
    font-size: 2.2rem;
  }
  .aure-quote {
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════ */
.testimonials { padding: var(--py) 0; background: var(--c-bg-2); }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--c-bg); border: 1px solid rgba(194,160,88,.18);
  border-radius: var(--r-lg); padding: 28px 24px;
}
.testimonial-stars { color: var(--c-gold); font-size: .95rem; letter-spacing: 4px; margin-bottom: 14px; }
.testimonial-card p {
  font-family: var(--font-d); font-style: italic;
  font-size: 1.02rem; color: var(--c-text-2); line-height: 1.6; margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-gold-btn); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; flex-shrink: 0; font-size: .9rem;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--c-brown-dk); }
.testimonial-author span  { font-size: .78rem; color: var(--c-text-3); }

/* ══════════════════════════════════════
   UBICACIÓN / FOTO
══════════════════════════════════════ */
.location { padding: var(--py) 0; background: var(--c-bg); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location-list { margin: 18px 0 10px; display: flex; flex-direction: column; gap: 9px; }
.location-list li { font-size: .93rem; color: var(--c-text-2); }
.location-disclaimer { font-size: .78rem; color: var(--c-text-3); margin-bottom: 22px; font-style: italic; }
.location-photo-wrap { position: relative; border-radius: var(--r-lg); overflow: visible; }
.location-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  transition: transform .5s ease; display: block;
}
.location-photo-wrap:hover .location-photo { transform: scale(1.02); }
.location-photo-badge {
  position: absolute; bottom: 20px; right: -14px;
  background: var(--c-gold-btn); color: #fff;
  border-radius: var(--r); padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 500; letter-spacing: .06em;
  white-space: nowrap; box-shadow: var(--sh);
}

/* ══════════════════════════════════════
   ORÁCULO (Optimizado sin espacio muerto)
══════════════════════════════════════ */
.oracle { 
  position: relative; 
  padding: 70px 0 50px; /* 1. Reducimos el padding superior e inferior */
  background: var(--c-bg-2); /* 2. Fondo claro y puro, adiós a lo oscuro */
  overflow: hidden; 
}

.oracle-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--c-bg) 0%, transparent 80%);
}

/* Reducimos el margen gigante debajo del título */
.oracle .section-header {
  margin-bottom: 30px; 
}

/* Como ahora el fondo es claro, oscurecemos los textos del título */
.oracle .section-header.light .section-eyebrow { color: var(--c-gold-btn); }
.oracle .section-header.light .section-title   { color: var(--c-brown-dk); }
.oracle .section-header.light .section-title em{ color: var(--c-brown); }
.oracle .section-header.light .section-desc    { color: var(--c-text-2); }

.oracle-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; /* Acercamos el texto de abajo a la carta */
}

/* 3. El truco: Marca de agua gigante anclando el diseño */
.oracle-wrap::before {
  content: '✦';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 450px; 
  color: var(--c-gold-btn);
  opacity: 0.04; /* Súper transparente, que casi ni se note */
  z-index: -1;
  pointer-events: none;
}
.oracle-card { width: 300px; height: 420px; cursor: pointer; perspective: 1200px; }
.card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.oracle-card.flipped .card-inner { transform: rotateY(180deg); }
.card-back, .card-front {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 30px 22px;
}
.card-back {
  background: linear-gradient(145deg, #3c2a14 0%, #2c1f12 60%, #4a3018 100%);
  border: 1px solid rgba(194,160,88,.3);
  box-shadow: 0 0 36px rgba(194,160,88,.1);
}
.card-back::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(194,160,88,.14);
  border-radius: calc(var(--r-lg) - 4px);
}
.card-back-symbol {
  font-size: 3.8rem; color: var(--c-gold-lt);
  animation: psym 3s ease-in-out infinite; margin-bottom: 14px;
}
@keyframes psym {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .52; transform: scale(.86); }
}
.card-back-hint {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(253,250,245,.42);
}
.card-front {
  background: linear-gradient(145deg, var(--c-bg), var(--c-bg-2));
  border: 1px solid rgba(194,160,88,.28);
  transform: rotateY(180deg); box-shadow: var(--sh-lg); text-align: center;
}
.card-front-symbol { font-size: 1.9rem; margin-bottom: 16px; }
.card-quote {
  font-family: var(--font-d); font-size: 1.08rem; font-style: italic;
  font-weight: 300; color: var(--c-brown); line-height: 1.5; margin-bottom: 14px;
  quotes: '\201C' '\201D';
}
.card-quote::before { content: open-quote; color: var(--c-gold); }
.card-quote::after  { content: close-quote; color: var(--c-gold); }
.card-author { font-size: .76rem; letter-spacing: .1em; color: var(--c-text-3); text-transform: uppercase; }
.oracle-daily-info { text-align: center; }
.oracle-revealed-msg { font-size: .83rem; color: rgba(253,250,245,.5); letter-spacing: .05em; }
.oracle-countdown {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(194,160,88,.2);
  border-radius: 60px; padding: 9px 18px;
  font-size: .8rem; color: var(--c-gold-lt);
  letter-spacing: .05em; margin-top: 8px;
}
.oracle-note { font-size: .74rem; color: rgba(253,250,245,.36); text-align: center; letter-spacing: .04em; }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog { padding: var(--py) 0; background: var(--c-bg-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.blog-card {
  background: var(--c-bg); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(194,160,88,.16);
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.blog-card-img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--c-bg-3); }
.blog-card-img-placeholder {
  aspect-ratio: 16/9; background: linear-gradient(135deg, var(--c-bg-3), var(--c-gold-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--c-gold);
}
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: .7rem; letter-spacing: .1em; color: var(--c-gold-btn); text-transform: uppercase; margin-bottom: 7px; }
.blog-card h3 {
  font-family: var(--font-d); font-size: 1.18rem; font-weight: 400;
  color: var(--c-brown-dk); margin-bottom: 7px; line-height: 1.3;
}
.blog-card p { font-size: .84rem; color: var(--c-text-3); margin-bottom: 12px; }
.blog-card-link { font-size: .78rem; font-weight: 500; color: var(--c-gold-btn); }
.blog-loading { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--c-text-3); }
.loading-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 14px; }
.loading-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gold); animation: ldb 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: .2s; }
.loading-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes ldb {
  0%,80%,100% { transform: translateY(0); opacity: .4; }
  40% { transform: translateY(-10px); opacity: 1; }
}
.blog-error { grid-column: 1/-1; text-align: center; padding: 40px; color: var(--c-text-3); }
.blog-cta { text-align: center; }

/* ══════════════════════════════════════
   COLABORADORES
══════════════════════════════════════ */
.colaboradores { padding: var(--py) 0; background: var(--c-bg); }
.colab-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 38px; justify-content: center; text-align: center;
  max-width: 800px; margin: 0 auto;
}
.colab-card { display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform .3s; }
.colab-card:hover { transform: translateY(-5px); }
.colab-card-img {
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(194,160,88,.28);
  background: var(--c-bg-2); box-shadow: var(--sh);
}
.colab-card-placeholder {
  width: 108px; height: 108px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-bg-3), var(--c-gold-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--c-gold);
}
.colab-card h4 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 400; color: var(--c-brown-dk); }

/* ══════════════════════════════════════
   CONTACTO
══════════════════════════════════════ */
.contact { padding: var(--py) 0; background: var(--c-bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-text-3); margin-bottom: 2px;
}
.contact-item a { color: var(--c-gold-btn); font-size: .93rem; transition: color .2s; }
.contact-item a:hover { color: var(--c-brown-dk); }
.contact-item span { font-size: .93rem; color: var(--c-text-2); }
.contact-social { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(194,160,88,.36);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold-btn); transition: all .25s;
}
.social-btn:hover { background: var(--c-gold-btn); color: #fff; border-color: var(--c-gold-btn); }

.contact-form {
  background: var(--c-bg); border: 1px solid rgba(194,160,88,.22);
  border-radius: var(--r-lg); padding: 38px 34px; box-shadow: var(--sh);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label {
  font-size: .73rem; font-weight: 500; letter-spacing: .09em;
  text-transform: uppercase; color: var(--c-text-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-b); font-size: .93rem; color: var(--c-text);
  background: var(--c-bg-2); border: 1.5px solid rgba(194,160,88,.24);
  border-radius: var(--r); padding: 11px 14px;
  outline: none; transition: border-color .25s, box-shadow .25s;
  width: 100%; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(194,160,88,.12);
}
.form-group input.invalid,
.form-group textarea.invalid { border-color: #c0392b; }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 18px; font-size: .85rem; color: var(--c-text-3);
}
.form-check input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--c-gold); flex-shrink: 0; }
.form-check a { color: var(--c-gold-btn); text-decoration: underline; }
.form-feedback {
  margin-top: 14px; padding: 13px 16px;
  border-radius: var(--r); font-size: .88rem; text-align: center;
}
.form-feedback.success {
  background: rgba(122,92,60,.07); color: var(--c-brown); border: 1px solid rgba(122,92,60,.18);
}
.form-feedback.error {
  background: rgba(192,57,43,.06); color: #c0392b; border: 1px solid rgba(192,57,43,.18);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--c-dark); padding: 54px 24px 30px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-brand {
  text-align: center; margin-bottom: 30px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.footer-logo-img {
  height: 46px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) saturate(.3) hue-rotate(8deg);
  opacity: .8; margin-bottom: 2px;
}
.footer-logo-fallback {
  display: none; align-items: center; gap: 8px; justify-content: center;
}
.footer-brand .logo-symbol { color: var(--c-gold-lt); font-size: 1.1rem; }
.footer-brand .logo-text {
  font-family: var(--font-d); font-size: 1.55rem; color: var(--c-bg);
}
.footer-tagline {
  font-size: .73rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(253,250,245,.36);
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px 26px; margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-links a { font-size: .8rem; color: rgba(253,250,245,.48); transition: color .2s; }
.footer-links a:hover { color: var(--c-gold-lt); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: .76rem; color: rgba(253,250,245,.3); }
.footer-credit { font-size: .71rem; color: rgba(253,250,245,.2); transition: color .25s; }
.footer-credit:hover { color: rgba(253,250,245,.48); }

/* ── BOTÓN WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #25d366; /* Verde oficial exacto de WhatsApp */
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Sombra doble: una base oscura sutil + un "resplandor" verde */
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 4px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
  /* Transición fluida estilo Apple */
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-float:hover {
  /* Al pasar el ratón se eleva un poco y crece mínimamente */
  transform: translateY(-6px) scale(1.04);
  background-color: #20ba5a; 
  /* La sombra verde se expande */
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* --- DISEÑO DEL BOTÓN ACORDEÓN --- */
.toggle-btn {
  background: none;
  border: none;
  border-top: 1px solid rgba(194,160,88,.2); /* Línea dorada súper fina y elegante */
  color: var(--c-gold-btn);
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Texto a un lado, icono al otro */
  width: 100%; /* Que la línea ocupe todo el ancho */
  padding-top: 18px; /* Separación respecto a la línea */
  margin-top: 0; /* Quitamos el 'auto' que rompía el diseño hacia abajo */
  transition: color 0.3s;
}

.toggle-btn:hover {
  color: var(--c-brown-dk);
}

.toggle-icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

/* Girar el icono de + a x cuando está abierto */
.service-card.is-open .toggle-icon {
  transform: rotate(45deg);
}

/* --- EL TRUCO DEL ACORDEÓN --- */
.service-more-info {
  display: grid;
  grid-template-rows: 0fr; /* Empieza colapsado */
  transition: grid-template-rows 0.4s ease;
  margin-top: 0;
}

.service-more-inner {
  overflow: hidden; /* Oculta lo que sobresale cuando está cerrado */
  display: flex;
  flex-direction: column;
}

/* Cuando Javascript le añada la clase, se expande a su altura natural */
.service-card.is-open .service-more-info {
  grid-template-rows: 1fr;
  margin-top: 15px; /* Da un poco de aire al abrirse */
}

/* Separación extra para los enlaces de reserva dentro del acordeón */
.service-more-inner .service-link {
  margin-top: 15px;
  align-self: flex-start;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --py: 72px; }

  .hero-split {
    grid-template-columns: 1fr; text-align: center;
    padding: 110px 24px 80px; gap: 44px;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions  { justify-content: center; }
  .hero-logo     { display: flex; justify-content: center; }
  .hero-media    { order: -1; }
  .hero-media-frame { max-width: 270px; margin: 0 auto; }
  .hero-media-tag   { left: 50%; transform: translateX(-50%); bottom: -18px; }

  .about-grid       { grid-template-columns: 1fr; gap: 44px; }
  .about-deco       { display: none; }
  .about-image-wrap { max-width: 340px; margin: 0 auto; }
  .about-stat-card  { right: 0; }

  .feat-layout      { grid-template-columns: 1fr; }
  .feat-cards       { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .services-grid    { grid-template-columns: 1fr; }

  .steps-row        { flex-wrap: wrap; justify-content: center; }
  .step             { min-width: 150px; }
  .step-arrow       { display: none; }

  .manifestación-layout  { grid-template-columns: 1fr; }
  .aure-card        { position: relative; top: auto; }

  .testimonials-track { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .location-grid    { grid-template-columns: 1fr; }
  .location-photo-badge { right: 0; }

  .blog-grid        { grid-template-columns: repeat(2, 1fr); }

  .contact-grid     { grid-template-columns: 1fr; }
  .contact-form     { padding: 26px 20px; }
}

@media (max-width: 640px) {
  .nav-links        { display: none; flex-direction: column; gap: 20px; }
  .nav-links.open   {
    display: flex; position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(44,31,18,.97);
    align-items: center; justify-content: center;
    z-index: 800; font-size: 1.3rem;
  }
  .nav-toggle       { display: flex; z-index: 901; }

  .hero-actions     { flex-direction: column; align-items: center; }
  .feat-cards       { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; align-items: center; text-align: center; }
  /* Añadir dentro del @media (max-width: 640px) */
  .oracle { 
    padding: 40px 0 30px; /* Adiós al descampado superior en móvil */
  }
  .oracle .section-header { 
    margin-bottom: 20px; 
  }
  .oracle-wrap::before {
    font-size: 280px; /* Símbolo más pequeño para móvil */
  }
  .oracle-card {
    width: 270px; /* Un poco más estilizada para que no roce los bordes */
    height: 380px;
  }
  .otras-list { 
    grid-template-columns: 1fr; /* En móvil vuelve a 1 columna */
  }
}
