/* ========================================
   MAESTRO DE LA LUZ - Minimalista Oscuro Elegante
   ======================================== */

/* Fuentes optimizadas: solo los pesos que se usan, con font-display swap */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@300;400;500&family=Cormorant+Garamond:ital@0;1&display=swap');

:root {
  /* Paleta base oscura */
  --negro-puro: #0a0a0a;
  --negro-suave: #121212;
  --negro-tarjeta: #1a1a1a;
  --negro-hover: #222222;
  --gris-borde: #2a2a2a;
  --gris-medio: #3a3a3a;

  /* Dorado (acento principal) */
  --dorado: #d4af37;
  --dorado-claro: #f5d76e;
  --dorado-brillante: #ffd700;

  /* Rojo vivo (CTAs y acentos pasionales) */
  --rojo: #c41e1e;
  --rojo-vivo: #e53935;
  --rojo-fuego: #ff3030;
  --rojo-oscuro: #8b0000;

  /* Azul vivo (acentos místicos y enlaces) */
  --azul: #1e6fa0;
  --azul-vivo: #2196f3;
  --azul-electrico: #00b8ff;
  --azul-oscuro: #0d3b66;

  /* WhatsApp / verde */
  --verde-whatsapp: #25D366;
  --verde-whatsapp-hover: #128C7E;

  /* Neutros */
  --blanco: #ffffff;
  --blanco-suave: #f5f5f5;
  --gris-texto: #a8a8a8;
  --gris-claro: #d4d4d4;

  /* Sombras y efectos */
  --sombra-suave: 0 4px 30px rgba(0, 0, 0, 0.5);
  --sombra-dorada: 0 0 30px rgba(212, 175, 55, 0.25);
  --sombra-roja: 0 0 30px rgba(229, 57, 53, 0.35);
  --sombra-azul: 0 0 30px rgba(33, 150, 243, 0.25);
  --resplandor-rojo: 0 0 20px rgba(255, 48, 48, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gris-claro);
  background: var(--negro-puro);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  letter-spacing: 0.2px;
}

/* Textura de fondo con acentos rojo+azul+dorado */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 30, 30, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 111, 160, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(229, 57, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.particulas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particula {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--dorado);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--dorado), 0 0 15px rgba(201, 169, 97, 0.5);
  animation: flotarParticula linear infinite;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes flotarParticula {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
    transform: translateY(90vh) translateX(5px) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(50vh) translateX(-10px) scale(1.2);
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) translateX(15px) scale(0.5);
    opacity: 0;
  }
}

/* ========================================
   HEADER / NAVEGACIÓN
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gris-borde);
  transition: all 0.4s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--dorado);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--dorado-claro);
}

.logo-icono {
  font-size: 1.5rem;
  color: var(--dorado);
  animation: rotarLento 30s linear infinite;
}

@keyframes rotarLento {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.menu a {
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  color: var(--gris-claro);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--dorado);
  transition: width 0.4s ease;
}

.menu a:hover {
  color: var(--dorado);
}

.menu a:hover::after,
.menu a.activo::after {
  width: 100%;
}

.menu a.activo {
  color: var(--dorado);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dorado);
  cursor: pointer;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-fondo,
.rayos-luz {
  display: none;
}

.hero-contenido {
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: aparecer 1.5s ease-out;
}

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

.simbolo-divino {
  font-size: 3rem;
  margin-bottom: 2rem;
  display: inline-block;
  color: var(--dorado);
  opacity: 0.7;
}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--blanco);
  line-height: 1.1;
  letter-spacing: 1px;
}

.hero-subtitulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--dorado);
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 300;
}

.hero-descripcion {
  font-size: 1.05rem;
  color: var(--gris-texto);
  max-width: 600px;
  margin: 2rem auto 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.divisor-ornamental {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divisor-ornamental::before,
.divisor-ornamental::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.divisor-ornamental span {
  color: var(--dorado);
  font-size: 1rem;
  opacity: 0.7;
}

/* ========================================
   BOTONES
   ======================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin: 0.5rem;
  border-radius: 0;
}

.btn-primario {
  background: linear-gradient(135deg, var(--rojo-vivo) 0%, var(--rojo) 50%, var(--rojo-oscuro) 100%);
  color: var(--blanco);
  border: 1px solid var(--rojo-vivo);
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-primario:hover {
  background: linear-gradient(135deg, var(--rojo-fuego) 0%, var(--rojo-vivo) 50%, var(--rojo) 100%);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-roja);
  border-color: var(--rojo-fuego);
}

.btn-secundario {
  background: transparent;
  color: var(--dorado-claro);
  border: 1px solid var(--dorado);
}

.btn-secundario:hover {
  background: var(--dorado);
  border-color: var(--dorado-brillante);
  color: var(--negro-puro);
  transform: translateY(-2px);
  box-shadow: var(--sombra-dorada);
}

.btn-azul {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, var(--azul-vivo) 0%, var(--azul) 100%);
  color: var(--blanco);
  border: 1px solid var(--azul-vivo);
  transition: all 0.4s ease;
  margin: 0.5rem;
}

.btn-azul:hover {
  background: transparent;
  color: var(--azul-electrico);
  border-color: var(--azul-electrico);
  transform: translateY(-2px);
  box-shadow: var(--sombra-azul);
}

/* WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: #25d366;
  color: white;
  border: 1px solid #25d366;
  transition: all 0.4s ease;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25d366;
  transform: translateY(-2px);
}

.btn-whatsapp .wa-icono {
  font-size: 1.2rem;
}

/* WhatsApp flotante - Píldora "Contactar Ahora" estilo lamaestraindira */
.whatsapp-flotante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 14px 22px;
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulsoWhatsapp 2.2s ease-in-out infinite;
}

.whatsapp-flotante .wa-icono-flotante {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.5rem;
}

.whatsapp-flotante .wa-texto {
  white-space: nowrap;
}

@keyframes pulsoWhatsapp {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
}

.whatsapp-flotante:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* En móvil: solo icono circular */
@media (max-width: 560px) {
  .whatsapp-flotante {
    padding: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    justify-content: center;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-flotante .wa-texto { display: none; }
  .whatsapp-flotante .wa-icono-flotante { width: auto; height: auto; }
}

.tarjeta-whatsapp {
  background: var(--negro-tarjeta);
  border: 1px solid var(--gris-borde);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
  position: relative;
}

.tarjeta-whatsapp .wa-circulo {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: transparent;
  border: 1px solid var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dorado);
}

.tarjeta-whatsapp h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--blanco);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.tarjeta-whatsapp p {
  font-size: 1rem;
  color: var(--gris-texto);
  margin-bottom: 2rem;
  font-weight: 300;
}

.tarjeta-whatsapp .numero-wa {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--dorado);
  margin-bottom: 2rem;
  letter-spacing: 3px;
  font-weight: 400;
}

/* ========================================
   SECCIONES
   ======================================== */
.seccion {
  padding: 7rem 2rem;
  position: relative;
}

.contenedor {
  max-width: 1300px;
  margin: 0 auto;
}

.titulo-seccion {
  text-align: center;
  margin-bottom: 5rem;
}

.titulo-seccion .pre-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--dorado);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.titulo-seccion h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--blanco);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.titulo-seccion p {
  font-size: 1rem;
  color: var(--gris-texto);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ========================================
   TARJETAS DE SERVICIOS
   ======================================== */
.grid-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tarjeta-servicio {
  background: var(--negro-tarjeta);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
  border: 1px solid var(--gris-borde);
}

.tarjeta-servicio:hover {
  transform: translateY(-5px);
  border-color: var(--dorado);
  background: var(--negro-hover);
}

.icono-servicio {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem;
  background: transparent;
  border: 1px solid var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--dorado);
  transition: all 0.4s ease;
}

.tarjeta-servicio:hover .icono-servicio {
  background: var(--dorado);
  color: var(--negro-puro);
}

.tarjeta-servicio h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--blanco);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.tarjeta-servicio p {
  color: var(--gris-texto);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.tarjeta-servicio .enlace-mas {
  color: var(--dorado);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--dorado);
  transition: all 0.3s ease;
  font-weight: 400;
}

.tarjeta-servicio .enlace-mas:hover {
  color: var(--blanco);
  border-bottom-color: var(--blanco);
}

/* ========================================
   SECCIONES ALTERNADAS
   ======================================== */
.seccion-claro {
  background: var(--negro-suave);
}

.seccion-dorada {
  background: var(--negro-suave);
  border-top: 1px solid var(--gris-borde);
  border-bottom: 1px solid var(--gris-borde);
}

.dos-columnas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dos-columnas-imagen {
  position: relative;
  text-align: center;
}

.dos-columnas-imagen .marco-divino {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 0 auto;
  background: var(--negro-tarjeta);
  border: 1px solid var(--dorado);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dos-columnas-imagen .marco-divino::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid var(--gris-borde);
  border-radius: 50%;
}

.dos-columnas-imagen .simbolo-grande {
  font-size: 6rem;
  color: var(--dorado);
  opacity: 0.8;
}

.dos-columnas-texto h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--blanco);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1;
}

.dos-columnas-texto .pre-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--dorado);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.dos-columnas-texto p {
  font-size: 1rem;
  color: var(--gris-texto);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ========================================
   TESTIMONIOS
   ======================================== */
.grid-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonio {
  background: var(--negro-tarjeta);
  padding: 3rem 2rem 2rem;
  position: relative;
  text-align: center;
  border: 1px solid var(--gris-borde);
  transition: all 0.4s ease;
}

.testimonio::before {
  content: none;
}

.testimonio:hover {
  transform: translateY(-5px);
  border-color: var(--dorado);
}

.testimonio-texto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gris-claro);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
}

.testimonio-autor {
  font-family: 'Great Vibes', cursive;
  color: var(--dorado);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}

.testimonio-ubicacion {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gris-texto);
  margin-top: 0.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.estrellas {
  color: var(--dorado);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--negro-tarjeta);
  border: 1px solid var(--gris-borde);
  padding: 5rem 2rem;
  text-align: center;
  margin: 3rem auto;
  max-width: 900px;
  position: relative;
}

.cta-banner::before,
.cta-banner::after {
  content: none;
}

.cta-banner h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--blanco);
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--gris-texto);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--negro-suave);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--gris-borde);
  margin-top: 4rem;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-columna h3 {
  font-family: 'Inter', sans-serif;
  color: var(--dorado);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-columna p,
.footer-columna a {
  font-family: 'Inter', sans-serif;
  color: var(--gris-texto);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-columna a:hover {
  color: var(--dorado);
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: var(--dorado);
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-base {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gris-borde);
  color: var(--gris-texto);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ========================================
   PÁGINA INTERIOR - HEADER
   ======================================== */
.pagina-header {
  padding: 200px 2rem 6rem;
  text-align: center;
  position: relative;
  background: var(--negro-suave);
  border-bottom: 1px solid var(--gris-borde);
}

.pagina-header h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--blanco);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.1;
}

.pagina-header .pre-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--dorado);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.breadcrumb {
  font-family: 'Inter', sans-serif;
  color: var(--gris-texto);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 2rem;
  font-weight: 300;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--dorado);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--blanco);
}

/* ========================================
   CONTENIDO DE PÁGINA
   ======================================== */
.contenido-pagina {
  max-width: 850px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.contenido-pagina h2 {
  font-family: 'Great Vibes', cursive;
  color: var(--blanco);
  font-size: 2.5rem;
  margin: 3rem 0 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.contenido-pagina h3 {
  font-family: 'Inter', sans-serif;
  color: var(--dorado);
  font-size: 1.1rem;
  margin: 2.5rem 0 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contenido-pagina p {
  font-size: 1rem;
  color: var(--gris-claro);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-weight: 300;
}

.contenido-pagina ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.contenido-pagina ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--gris-claro);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.contenido-pagina ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dorado);
  font-size: 1rem;
  top: 2px;
}

.caja-destacada {
  background: var(--negro-tarjeta);
  border-left: 2px solid var(--dorado);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gris-claro);
  position: relative;
  line-height: 1.8;
}

/* ========================================
   FORMULARIO
   ======================================== */
.formulario-contacto {
  background: var(--negro-tarjeta);
  padding: 3rem;
  border: 1px solid var(--gris-borde);
  max-width: 700px;
  margin: 0 auto;
}

.campo-formulario {
  margin-bottom: 1.5rem;
}

.campo-formulario label {
  display: block;
  font-family: 'Inter', sans-serif;
  color: var(--dorado);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.campo-formulario input,
.campo-formulario textarea,
.campo-formulario select {
  width: 100%;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--negro-puro);
  border: 1px solid var(--gris-borde);
  border-radius: 0;
  color: var(--blanco);
  transition: all 0.3s ease;
}

.campo-formulario input:focus,
.campo-formulario textarea:focus,
.campo-formulario select:focus {
  outline: none;
  border-color: var(--dorado);
  background: var(--negro-suave);
}

.campo-formulario textarea {
  resize: vertical;
  min-height: 150px;
}

/* ========================================
   INFO CONTACTO
   ======================================== */
.grid-info-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.info-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--negro-tarjeta);
  border: 1px solid var(--gris-borde);
  transition: all 0.3s ease;
}

.info-item:hover {
  border-color: var(--dorado);
  transform: translateY(-5px);
}

.info-item-icono {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: transparent;
  border: 1px solid var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dorado);
}

.info-item h3 {
  font-family: 'Inter', sans-serif;
  color: var(--dorado);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.info-item p {
  font-family: 'Inter', sans-serif;
  color: var(--gris-claro);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ========================================
   FAQ
   ======================================== */
.faq-item {
  background: var(--negro-tarjeta);
  border: 1px solid var(--gris-borde);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--dorado);
}

.faq-pregunta {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: var(--blanco);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.faq-pregunta::after {
  content: '+';
  color: var(--dorado);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.activo .faq-pregunta::after {
  transform: rotate(45deg);
}

.faq-respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.activo .faq-respuesta {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-respuesta p {
  color: var(--gris-texto);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ========================================
   BLOG
   ======================================== */
.grid-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tarjeta-blog {
  background: var(--negro-tarjeta);
  border: 1px solid var(--gris-borde);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.tarjeta-blog:hover {
  transform: translateY(-5px);
  border-color: var(--dorado);
}

.blog-imagen {
  height: 200px;
  background: var(--negro-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--dorado);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gris-borde);
}

.blog-contenido {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-categoria {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--dorado);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-titulo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--blanco);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

.blog-extracto {
  color: var(--gris-texto);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
  font-weight: 300;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gris-borde);
}

.blog-fecha {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gris-texto);
  letter-spacing: 1px;
  font-weight: 300;
}

.blog-leer {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dorado);
  text-decoration: none;
  border-bottom: 1px solid var(--dorado);
  padding-bottom: 3px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.blog-leer:hover {
  color: var(--blanco);
  border-bottom-color: var(--blanco);
}

/* Artículo individual */
.articulo-cabecera {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gris-borde);
}

.articulo-categoria {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--dorado);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.articulo-meta {
  font-family: 'Inter', sans-serif;
  color: var(--gris-texto);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  letter-spacing: 1px;
  font-weight: 300;
}

.articulo-contenido p {
  font-size: 1rem;
  color: var(--gris-claro);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-weight: 300;
}

.articulo-relacionado {
  background: var(--negro-tarjeta);
  padding: 2.5rem;
  margin-top: 5rem;
  border: 1px solid var(--gris-borde);
}

.articulo-relacionado h3 {
  font-family: 'Great Vibes', cursive;
  color: var(--blanco);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 400;
}

.articulo-relacionado ul {
  list-style: none;
  padding: 0;
}

.articulo-relacionado ul li {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.articulo-relacionado ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dorado);
}

.articulo-relacionado ul li a {
  color: var(--gris-claro);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: 300;
}

.articulo-relacionado ul li a:hover {
  color: var(--dorado);
}

/* ========================================
   IMÁGENES
   ======================================== */

/* Logo SVG en cabecera */
.logo-svg {
  height: 62px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-svg {
  opacity: 0.85;
}

/* Iconos SVG en tarjetas de servicio */
.svg-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
}

.icono-servicio .svg-icon {
  width: 36px;
  height: 36px;
  color: var(--dorado);
  transition: all 0.4s ease;
}

.tarjeta-servicio:hover .icono-servicio .svg-icon {
  color: var(--negro-puro);
}

/* Imagen de fondo del HERO en la portada */
.hero-imagen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.35;
  filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
  z-index: -1;
}

/* Retrato del Maestro - dentro del círculo */
.imagen-maestro {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Banner superior de las páginas internas */
.banner-pagina {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 0;
}

.banner-pagina img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  display: block;
}

.banner-pagina::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--negro-puro) 100%);
  pointer-events: none;
}

/* Imágenes destacadas en artículos del blog */
.imagen-articulo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 2.5rem;
  border: 1px solid var(--gris-borde);
  display: block;
}

/* Imágenes en tarjetas de blog */
.tarjeta-blog .blog-imagen {
  padding: 0;
  height: 200px;
  overflow: hidden;
}

.tarjeta-blog .blog-imagen-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tarjeta-blog:hover .blog-imagen-foto {
  transform: scale(1.05);
}

/* Responsive para imágenes */
@media (max-width: 768px) {
  .banner-pagina {
    height: 200px;
  }
  .imagen-articulo {
    height: 250px;
  }
  .logo-svg {
    height: 52px;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .dos-columnas {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .grid-servicios,
  .grid-testimonios,
  .grid-blog {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--gris-borde);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .menu.abierto {
    transform: translateY(0);
  }

  .menu a {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo {
    font-size: 2.2rem;
  }

  .hero {
    padding: 110px 1.2rem 3rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    letter-spacing: 0;
  }

  .hero-subtitulo {
    letter-spacing: 4px;
    font-size: 0.75rem;
  }

  .hero-descripcion {
    font-size: 1rem;
    margin: 1.5rem auto 2rem;
  }

  .simbolo-divino {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .seccion {
    padding: 4rem 1.2rem;
  }

  .pagina-header {
    padding: 130px 1.2rem 3.5rem;
  }

  .pagina-header h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .titulo-seccion {
    margin-bottom: 3rem;
  }

  .titulo-seccion h2 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .titulo-seccion p {
    font-size: 0.95rem;
  }

  .tarjeta-servicio {
    padding: 2.5rem 1.5rem;
  }

  .testimonio {
    padding: 2.5rem 1.5rem 2rem;
  }

  .testimonio-texto {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 3.5rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .footer {
    padding: 3.5rem 1.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-columna a,
  .footer-columna p {
    font-size: 0.95rem;
    padding: 0.3rem 0;
  }

  .formulario-contacto {
    padding: 2rem 1.5rem;
  }

  .contenido-pagina {
    padding: 3rem 1.2rem;
  }

  .contenido-pagina h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
  }

  .caja-destacada {
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.05rem;
  }

  .btn,
  .btn-whatsapp {
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: 0.4rem auto;
    display: block;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
  }

  .btn-whatsapp {
    display: inline-flex;
    justify-content: center;
  }

  .tarjeta-whatsapp {
    padding: 3rem 1.5rem;
  }

  .tarjeta-whatsapp .numero-wa {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .whatsapp-flotante {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .grid-info-contacto {
    gap: 1rem;
    margin: 2.5rem 0;
  }

  .info-item {
    padding: 2rem 1.5rem;
  }

  .blog-contenido {
    padding: 1.5rem;
  }

  .blog-titulo {
    font-size: 1.6rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .articulo-relacionado {
    padding: 2rem 1.5rem;
  }

  .articulo-relacionado h3 {
    font-size: 1.6rem;
  }
}

/* ========================================
   REDISEÑO - SECCIONES NUEVAS (León Obba)
   ======================================== */

/* === Banner con foto en cada encabezado === */
.encabezado-con-imagen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.encabezado-con-imagen .encabezado-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dorado-claro);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.encabezado-con-imagen .encabezado-imagen img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--dorado);
}

.encabezado-con-imagen.invertido {
  grid-template-columns: 1fr 1fr;
}

.encabezado-con-imagen.invertido .encabezado-imagen { order: 2; }
.encabezado-con-imagen.invertido .encabezado-texto { order: 1; }

@media (max-width: 768px) {
  .encabezado-con-imagen,
  .encabezado-con-imagen.invertido {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .encabezado-con-imagen.invertido .encabezado-imagen { order: 1; }
  .encabezado-con-imagen.invertido .encabezado-texto { order: 2; }
  .encabezado-con-imagen .encabezado-imagen img { height: 250px; }
}

/* === Video YouTube embebido === */
.video-contenedor {
  max-width: 900px;
  margin: 3rem auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(196, 30, 30, 0.3), 0 0 0 2px var(--dorado);
}

.video-contenedor iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-titulo {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--dorado-claro);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* === Sección parejas mismo sexo (especial) === */
.seccion-parejas-msmo-sexo {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(196, 30, 30, 0.08) 100%);
  padding: 5rem 0;
  border-top: 1px solid rgba(33, 150, 243, 0.2);
  border-bottom: 1px solid rgba(196, 30, 30, 0.2);
}

.seccion-parejas-msmo-sexo .badge-inclusivo {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(90deg, var(--rojo), var(--dorado), var(--azul-vivo));
  color: white;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* === Tarjetas con fondo de imagen (encabezados con imagen) === */
.banner-con-imagen-fondo {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: 8px;
  overflow: hidden;
}

.banner-con-imagen-fondo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(196, 30, 30, 0.4) 100%);
}

.banner-con-imagen-fondo .banner-contenido {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
}

.banner-con-imagen-fondo h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dorado-brillante);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.banner-con-imagen-fondo p {
  color: var(--blanco-suave);
  font-size: 1.1rem;
}

/* === Testimonios mejorados (estilo más visible) === */
.grid-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonio {
  background: linear-gradient(145deg, var(--negro-tarjeta) 0%, var(--negro-suave) 100%);
  border: 1px solid var(--gris-borde);
  border-top: 3px solid var(--rojo-vivo);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonio:nth-child(2) { border-top-color: var(--dorado); }
.testimonio:nth-child(3) { border-top-color: var(--azul-vivo); }

.testimonio:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--dorado);
}

.testimonio::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--dorado);
  line-height: 1;
  opacity: 0.6;
}

.testimonio .estrellas {
  color: var(--dorado-brillante);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonio-texto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gris-claro);
  margin-bottom: 1.5rem;
}

.testimonio-autor {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--dorado-claro);
  font-size: 0.95rem;
}

.testimonio-ubicacion {
  font-size: 0.8rem;
  color: var(--gris-texto);
  margin-top: 0.2rem;
}

/* === Sección estadísticas (al estilo lamaestraindira) === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  margin: 4rem 0;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-numero {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--dorado-brillante), var(--rojo-vivo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gris-claro);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* === Tarjetas servicio con foto === */
.tarjeta-servicio-foto {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--negro-tarjeta);
  border: 1px solid var(--gris-borde);
  transition: all 0.3s ease;
}

.tarjeta-servicio-foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.tarjeta-servicio-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 2;
}

.tarjeta-servicio-foto .contenido {
  position: relative;
  z-index: 3;
  padding: 2rem 1.5rem;
  color: var(--blanco);
}

.tarjeta-servicio-foto h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--dorado-brillante);
  margin-bottom: 0.5rem;
}

.tarjeta-servicio-foto p {
  font-size: 0.9rem;
  color: var(--gris-claro);
  margin-bottom: 1rem;
}

.tarjeta-servicio-foto:hover img {
  transform: scale(1.08);
}

.tarjeta-servicio-foto:hover {
  border-color: var(--dorado);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* === Botón "Contactar Ahora" verde inline (para secciones) === */
.btn-contactar-ahora {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: var(--verde-whatsapp);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-contactar-ahora:hover {
  background: var(--verde-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

/* === Sección lecturas (tarot, mano, ángeles) === */
.grid-lecturas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lectura-card {
  background: linear-gradient(145deg, var(--negro-tarjeta), var(--negro-suave));
  border: 1px solid var(--gris-borde);
  padding: 2.5rem 1.8rem;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lectura-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rojo-vivo), var(--dorado), var(--azul-vivo));
}

.lectura-card:hover {
  transform: translateY(-8px);
  border-color: var(--dorado);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lectura-card .lectura-icono {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.lectura-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dorado-claro);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.lectura-card p {
  color: var(--gris-claro);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* === Hero con acentos rojo+azul === */
.hero h1 {
  background: linear-gradient(135deg, var(--dorado-brillante) 0%, var(--dorado-claro) 50%, var(--blanco) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Línea divisora colorida */
.divisor-colorido {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--rojo-vivo), var(--dorado), var(--azul-vivo));
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* === Ubicación destacada === */
.ubicacion-destacada {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid var(--azul-vivo);
  color: var(--azul-electrico);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.ubicacion-destacada::before {
  content: '📍';
}

/* ========================================
   ANIMACIONES DE LATIDO PARA BOTONES CTA
   ======================================== */

/* Latido suave en todos los botones primarios (rojo) */
.btn-primario {
  animation: latidoBotonRojo 2.4s ease-in-out infinite;
}

@keyframes latidoBotonRojo {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
  }
  20% {
    transform: scale(1.04);
    box-shadow: 0 6px 25px rgba(229, 57, 53, 0.6), 0 0 0 6px rgba(229, 57, 53, 0.15);
  }
  40% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
  }
  60% {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(229, 57, 53, 0.5), 0 0 0 8px rgba(229, 57, 53, 0.08);
  }
}

.btn-primario:hover {
  animation-play-state: paused;
}

/* Latido en botones verdes "Contactar Ahora" inline */
.btn-contactar-ahora {
  animation: latidoBotonVerde 2.2s ease-in-out infinite;
}

@keyframes latidoBotonVerde {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

.btn-contactar-ahora:hover {
  animation-play-state: paused;
}

/* Hacer el botón flotante más vibrante */
.whatsapp-flotante {
  animation: latidoFlotante 1.8s ease-in-out infinite;
}

@keyframes latidoFlotante {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.7), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* Pausar animaciones si el usuario prefiere reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .btn-primario,
  .btn-contactar-ahora,
  .whatsapp-flotante {
    animation: none !important;
  }
}

/* ========================================
   TESTIMONIOS ESTILO WHATSAPP CHAT
   ======================================== */

.grid-testimonios-wa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.chat-whatsapp {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 4px),
    linear-gradient(180deg, #0b1418 0%, #111b21 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 0 1px var(--gris-borde);
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  max-width: 100%;
}

/* Cabecera del chat */
.chat-whatsapp-header {
  background: #202c33;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-whatsapp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dorado), var(--dorado-brillante));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--negro-puro);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chat-whatsapp-info {
  flex: 1;
  min-width: 0;
}

.chat-whatsapp-nombre {
  color: #e9edef;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.chat-whatsapp-estado {
  color: #25d366;
  font-size: 0.72rem;
  margin: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-whatsapp-estado::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
  animation: pulsoEnLinea 2s infinite;
}

@keyframes pulsoEnLinea {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chat-whatsapp-iconos {
  color: #aebac1;
  font-size: 1.1rem;
  letter-spacing: 4px;
}

/* Cuerpo del chat */
.chat-whatsapp-body {
  padding: 1rem 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 180px;
}

/* Burbuja del cliente (verde, derecha) */
.chat-burbuja {
  background: #005c4b;
  color: #e9edef;
  padding: 0.55rem 0.7rem 0.4rem;
  border-radius: 8px;
  max-width: 85%;
  align-self: flex-end;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.35;
  box-shadow: 0 1px 1px rgba(0,0,0,0.15);
  word-wrap: break-word;
}

.chat-burbuja::after {
  content: '';
  position: absolute;
  top: 0;
  right: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid #005c4b;
  border-bottom: 7px solid transparent;
}

/* Burbuja sin "colita" cuando hay varias seguidas */
.chat-burbuja.continua::after {
  display: none;
}

.chat-burbuja .hora {
  display: inline-block;
  color: rgba(233, 237, 239, 0.6);
  font-size: 0.65rem;
  margin-left: 0.5rem;
  vertical-align: bottom;
  white-space: nowrap;
}

.chat-burbuja .visto {
  color: #53bdeb;
  font-size: 0.7rem;
  margin-left: 0.15rem;
}

/* Burbuja del maestro (gris izquierda) - por si la necesitas */
.chat-burbuja.recibida {
  background: #202c33;
  align-self: flex-start;
}

.chat-burbuja.recibida::after {
  border-left: none;
  border-right: 7px solid #202c33;
  left: -7px;
  right: auto;
}

/* Fecha tipo "HOY" */
.chat-fecha {
  background: rgba(11, 20, 23, 0.5);
  color: #8696a0;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 6px;
  align-self: center;
  margin: 0.3rem 0;
}

/* Pie con autor y ubicación */
.chat-whatsapp-pie {
  padding: 0.7rem 1rem 0.9rem;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.chat-whatsapp-pie .autor {
  color: var(--dorado-claro);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

.chat-whatsapp-pie .ubicacion {
  color: var(--gris-texto);
  font-size: 0.75rem;
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

.chat-whatsapp-pie .estrellas {
  color: var(--dorado-brillante);
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-top: 4px;
}
