/* === RESET Y BASE === */
*  {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #000;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  padding-top: 80px;

  /* Scroll elegante por sección */
  overflow-y: scroll;

  /* 👇 evita desbordamiento horizontal */
  overflow-x: hidden;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* o el alto real de tu header fijo */
}


h1, h2, h3 {
  color: #f8eac7;
  margin-bottom: 10px;
}

h1 {
  font-size: 3rem;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  padding-left: 1rem; /* 👈 este valor lo puedes ajustar para "pegarlo" más */
}


.menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu a {
  color: #f8eac7;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #fff;
}

/* === SECCIONES === */
section {
  padding: 80px 20px;
  width: 100%;
}


/* 🎨 Fondo completo para sección inicio */
#inicio {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #0e0e0e, #000000);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

/* Centra el contenido sin limitar el fondo */
.contenido-inicio {
  max-width: 800px;
  margin: 0 auto;
}

/* Ajustes de tipografía */
#inicio h1 {
  font-size: 4.5rem; /* más grande */
  font-weight: 600;
  line-height: 1.2;
  color: #f8eac7;
  margin-bottom: 24px;
  letter-spacing: -0.8px;
  text-align: center;
}


#inicio .subtitulo {
  font-size: 1.05rem;
  color: #b3b3b3;
  line-height: 1.7;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 30px auto;
}




.hero {
  height: auto;
  padding: 6rem 2rem 4rem 2rem;
  text-align: center;
  margin-top: 80px;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo img {
  height: 64px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
}

.menu li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
}

.menu li a.active {
  background-color: #f8eac7;
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
}

.hero-content {
  text-align: center;
  margin-top: 5rem;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content .beige {
  color: #f8eac7;
  font-weight: 700;
}

.subtexto {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b3b3b3;
  max-width: 720px;
  margin: 1.5rem auto 2rem auto;
}

.botones {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.beige-btn {
  background-color: #f8eac7;
  color: #000;
}

.negro-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #f8eac7;
}

/* === BOTONES === */
.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500; /* menos pesado */
  font-size: 1rem;
  transition: 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  height: 48px;
  min-width: 220px;
}

.boton-beige {
  background-color: #f8eac7;
  color: #000;
  border: none;
}

.boton-beige:hover {
  background-color: #e6d9b6;
}

.boton-negro-borde {
  background-color: transparent;
  color: #f8eac7;
  border: 2px solid #f8eac7;
}

.boton-negro-borde:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.botones {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

/* === TARJETAS === */
.contenedor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tarjeta {
  background-color: #111;
  border-radius: 16px;
  padding: 24px;
  width: 280px;
  box-shadow: 0 0 12px rgba(248, 234, 199, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.precio {
  font-weight: bold;
  color: #f8eac7;
  margin-top: auto;
}

/* === CONTACTO FINAL ARMONIZADO === */
#contacto {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  min-height: 100vh;
}

.contacto-info {
  flex: 1 1 40%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #f8eac7;
  font-size: 1rem;
  line-height: 1.7;
}

.contacto-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contacto-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.redes-sociales {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

form.formulario {
  flex: 1 1 50%;
  max-width: 480px;
  background-color: #111;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(248, 234, 199, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
}

form input,
form textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  resize: none;
}

form textarea {
  height: 130px;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #000;
  font-size: 0.9rem;
  color: #f8eac7;
}


.menu li a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.3rem 0.5rem;
}


/* 🧱 Estilos para Productos */
.productos-fila-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; /* 🔧 esto alinea ambos desde arriba */
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}



.producto-item {
  display: flex;
  background-color: #111;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 10px #0005;
  width: 550px;
  gap: 24px;
  align-items: center;
}

.producto-img-vertical {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px; /* opcional, por estética */
}

.producto-detalle {
  flex: 1;
  color: #fff;
}

.producto-detalle h3 {
  color: #f8eac7;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.descripcion {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.formato {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.4rem;
}

.precio {
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.btn-comprar {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn-comprar:hover {
  background-color: #f8eac7;
  color: #000;
}










.terapias-sesiones {
  background-color: #000;
  padding: 200px 0; /* antes era 60px */
  text-align: center;
  color: #fff;
}


.tarjeta-servicio h3 {
  color: #f8eac7;
  margin: 10px 0;
}

.tarjeta-servicio p {
  font-size: 0.95em;
  color: #ccc;
}

.tarjeta-servicio span {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  color: #fff;
}


.swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}



.btn-agendar {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #f8eac7;
  color: #f8eac7;
  font-family: inherit;
  font-size: 0.95em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-agendar:hover {
  background-color: #f8eac7;
  color: #000;
}











/* Sección principal */
.eventos-section {
  background-color: #000;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Título centrado con ícono */
.eventos-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  text-align: center;
}

.eventos-titulo h2 {
  font-size: 2.3rem;
  color: #f8eac7;
  font-weight: 700;
  margin: 0;
}

.eventos-titulo .icono-titulo {
  width: 36px;
  height: 36px;
}

/* Contenedor vertical */
.evento-hero {
  display: flex;
  flex-direction: column;
  background-color: #111;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 80px;
  width: 100%;
  box-sizing: border-box;
}

/* Video ancho completo */
.evento-hero video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 30px;
  max-height: 500px;
}

/* Información completa */
.evento-info {
  width: 100%;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: justify; /* 🔥 Justifica el texto a ambos lados */
}

/* Encabezado de evento */
.evento-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.evento-header .icono-svg {
  width: 28px;
  height: 28px;
}

.evento-header h3 {
  font-size: 1.4rem;
  color: #f8eac7;
  margin: 0;
  font-weight: 600;
}

/* Detalle destacado */
.evento-detalle {
  font-size: 1rem;
  font-weight: 600;
  color: #f8eac7;
}

/* Texto */
.evento-info p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
}

/* Botón de inscripción */
.boton-inscribirse {
  align-self: flex-start;
  background-color: #f8eac7;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.boton-inscribirse:hover {
  background-color: #fff;
}

















/* === REGLA GENERAL DE RESETEO (Debe estar al principio) === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === ENCABEZADO Y MENÚ === */
.menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Esta regla es CRUCIAL para alinear el ícono y el texto en los enlaces del menú */
.menu a {
  color: #f8eac7;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  /* ¡ASEGÚRATE DE QUE ESTAS PROPIEDADES ESTÉN AQUÍ Y NO SEAN ANULADAS! */
  display: flex;          /* Hace que cada enlace sea un contenedor flex */
  align-items: center;    /* Centra verticalmente el ícono y el texto dentro del enlace */
  gap: 0.45rem;           /* Añade un pequeño espacio entre el ícono y el texto */
  padding: 0.3rem 0.5rem; /* Asegura que el padding que tenías no se pierda */
}

/* VUELVE A AÑADIR esta regla para dar tamaño al SVG en el menú, PERO SIN 'display: block;' */
.menu li a svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  /* ¡MUY IMPORTANTE: NO PONGAS 'display: block;' AQUÍ! */
  /* Si el problema persiste, la causa NO es este 'display: block;', sino otra cosa. */
}

/* === SECCIÓN PRODUCTOS - Título === */
/* Asegura que el título de la sección de productos se alinee correctamente */
.titulo-seccion { /* Es la clase de tu <h2> "Productos" */
    display: flex;           /* Hace que el h2 sea un contenedor flex */
    align-items: center;     /* Centra verticalmente el ícono y el texto */
    justify-content: center; /* Centra el título completo (ícono + texto) */
    gap: 12px;               /* Espacio entre el ícono y el texto */
    margin-bottom: 40px;     /* Ajusta según tu diseño */
    /* ...mantén otras propiedades si las tenías aquí para .titulo-seccion */
}

/* === ALINEACIÓN GENERAL PARA ÍCONOS (SVG e IMG) === */
/* Esta es una solución común para problemas de alineación vertical en general */
.icono-titulo, /* Para los íconos de títulos (Eventos, Productos) */
.icono-svg,    /* Para los íconos de tarjetas de servicio y eventos */
.icono-carrito /* Para el ícono en el botón de comprar */
{
    /* Mantén las propiedades existentes (width, height, stroke-width, filter, etc.) */
    /* ¡Añade o asegura esta propiedad! */
    vertical-align: middle; /* Alinea el centro del ícono con el centro del texto adyacente */
}

/* Tus reglas existentes para .eventos-titulo y .btn-comprar ya usan flexbox, lo cual es bueno */
/*
.eventos-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.btn-comprar {
  background-color: transparent;
  color: #f8eac7;
  border: 1px solid #f8eac7;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;  // ESTO YA ESTÁ BIEN
  align-items: center;   // ESTO YA ESTÁ BIEN
  gap: 8px;
  transition: 0.3s ease;
}
*/

/* Ajusta el H2 dentro de la sección de eventos para asegurar la alineación */
.eventos-titulo h2 {
    /* Reinicia cualquier propiedad de ancho que pueda estar forzando el 100% */
    width: auto;
    /* Asegura que no crezca ni se encoja de forma inesperada dentro del flexbox */
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    /* Elimina cualquier margen/padding por defecto del h2 que pueda estar empujando el ícono */
    margin: 0;
    /* Asegura que el color sea beige como tus otros títulos */
    color: #f8eac7; /* Ya lo tienes en h1, h2, h3, pero lo pongo por si acaso */
}
/* Estilo para el contenedor de cada encabezado de evento */
.evento-header {
    display: flex;         /* Convierte este div en un contenedor flex */
    align-items: center;   /* Centra verticalmente el ícono y el texto */
    gap: 10px;             /* Añade espacio entre el ícono y el texto */
    margin-bottom: 10px;   /* Ajusta este margen según el espacio que quieras debajo del encabezado */
}

/* Ajusta el H3 dentro de cada encabezado de evento para que no fuerce el ancho completo */
.evento-header h3 {
    width: auto;         /* Asegura que no tome el 100% del ancho del flexbox */
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    margin: 0;           /* Elimina cualquier margen por defecto que pueda desalinearlo */
    /* Si tienes otros estilos para h3, asegúrate de mantenerlos o fusionarlos aquí */
}


/* 🎥 CONTENIDO MULTIMEDIA */
.multimedia-section {
  padding: 80px 20px;
  background-color: #000;
  text-align: center;
  color: #fff;
}

.multimedia-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.multimedia-section p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.media-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* Para que se acomode en pantallas pequeñas */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}


.media-card {
  background-color: #111;
  border-radius: 20px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.media-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}


.media-card h3 {
  color: #fff;
  margin-bottom: 5px;
}

.media-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}

.media-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  filter: grayscale(100%);
  margin-bottom: 20px;
}
.media-card picture {
  width: 100%;
  max-height: 260px; /* nuevo límite visual */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.media-card picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}


.media-button {
  background-color: #111;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.media-button:hover {
  background-color: #fff;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Sección: ¿Qué es Arquitectura Interna? */
.seccion-presentacion {
  background-color: #000;
  color: #fff;
  padding: 80px 40px;
}

/* Contenedor general en dos columnas */
.contenedor-presentacion {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Bloque de texto */
.presentacion-texto {
  flex: 1 1 500px;
  min-width: 300px;
}

/* Contenedor del logo */
.presentacion-logo {
  flex: 1 1 400px;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen del logo */
.logo-anfitrion {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

/* Título con negrita */
.titulo-seccion {
  font-size: 2.5em;
  color: #f8eac7;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 700; /* ✅ Negrita SOLO aquí */
}

/* Texto descriptivo sin negrita */
.descripcion-proyecto {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
  color: #ccc; /* ✅ Mismo tono gris claro que usas en otras secciones */
}


/* Autor con énfasis */
.autor a {
  color: #f8eac7;
  text-decoration: underline;
  font-weight: bold;
}

.texto-secundario {
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
  color: #ccc;
}

.texto-secundario {
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
  color: #ccc;
}


.suscripcion-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin: 1rem 0;
  color: #fff;
}

.suscripcion-checkbox input {
  accent-color: #f8eac7;
  transform: scale(1.2);
  cursor: pointer;
}


.footer {
  background: linear-gradient(to bottom, #000, #0a0a0a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  text-align: center;
  padding: 1rem 0;
}

.footer-linea1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.footer-linea1 img {
  width: 16px;
  height: auto;
  filter: drop-shadow(0 0 2px #fff);
}

.footer-linea1 span {
  color: #f8eac7;
  font-weight: 600;
  font-size: 0.8rem;
}

.footer-linea2 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 90%;
  margin: 0 auto;
  color: #ccc;
  font-size: 0.65rem;
  line-height: 1.3;
}


@keyframes moverLineaIzq {
  0% { transform: translateX(0); opacity: 0.2; }
  50% { transform: translateX(15px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.2; }
}




.seccion-terapias {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.tarjeta-terapia {
  background-color: #111;
  border-radius: 16px;
  padding: 20px;
  margin: 20px auto;
  border: 2px solid #f8eac7;
  max-width: 500px;
}

.tarjeta-terapia h3 {
  margin-top: 0;
  color: #f8eac7;
}

.boton-terapia {
  background-color: #000;
  color: #f8eac7;
  border: 2px solid #f8eac7;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.boton-terapia:hover {
  background-color: #f8eac7;
  color: #000;
}



.icono-conectado {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.suscripcion {
  text-align: center;
  margin: 60px 20px;
  color: #f8eac7;
}

.suscripcion h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}

.suscripcion form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.suscripcion input[type="email"] {
  padding: 12px 18px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  background-color: #1a1a1a;
  color: white;
  width: 280px;
}

.suscripcion button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: none;
  border-radius: 20px;
  background-color: #f8eac7;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.suscripcion button:hover {
  background-color: #fff1cf;
}

.suscripcion p {
  margin-top: 12px; /* antes probablemente estaba en 0 */
  font-size: 15px;
  color: #f8eac7;
}




@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.icono-conectado {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  animation: fadeZoomIn 0.8s ease-out forwards;
  opacity: 0;
}


.swal2-confirm {
  background-color: #f8eac7 !important;
  color: #000 !important;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 24px;
}



@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.icono-conectado {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  animation: fadeZoomIn 0.8s ease-out forwards;
  opacity: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icono-conectado:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px #f8eac7);
}




.btn-suscribirse {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 20px;
  background-color: #f8eac7;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-suscribirse:hover {
  background-color: #fff1cf;
}

.icono-zap {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}













/* === RESET Y BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* === TIPOGRAFÍA === */
h1, h2, h3 {
  color: #f8eac7;
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
}













.video-evento {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: bottom;
  border-radius: 12px;
  display: block;
  background-color: #000;

  /* Filtro gris suave */
  filter: grayscale(25%);
}



/* ✨ Aparecer suavemente cuando entra al viewport */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}






.boton-inscribirse {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #f8eac7;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.boton-inscribirse:hover {
  background-color: #fff;
}

.evento-hero video {
  width: 100%;
  aspect-ratio: 16 / 4;
  object-fit: cover;
  object-position: bottom;
  border-radius: 20px;
  margin-bottom: 16px;
}








.boton-inscribirse {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 12px;
  background-color: #f8eac7;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.boton-inscribirse:hover {
  background-color: #fff;
  color: #000;
}



/* Efecto de flotación suave */
.logo-anfitrion {
  animation: flotar 3s ease-in-out infinite;
  transition: transform 0.3s ease-in-out;
}

@keyframes flotar {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}








/* 🔒 Ocultar botón del menú hamburguesa en escritorio */
.menu-toggle {
  display: none;
}

/* ✅ Mostrar solo en móviles (pantallas pequeñas) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    z-index: 1000;
  }

  .menu-toggle img {
    width: 28px;
    height: 28px;
  }
}








@media (min-width: 769px) {
  .productos-contenedor {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 120px;
    background-color: #000; /* fondo continuo para distinguir la sección */
  }

  .productos-fila-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .producto-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background-color: #111;
    border-radius: 16px;
    box-shadow: 0 0 10px #0005;
    width: 550px;
    min-height: 370px;
    transition: transform 0.2s ease;
  }

  .producto-item:hover {
    transform: translateY(-6px);
  }

  .producto-img-vertical {
    width: 180px;
    height: 270px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
    margin: 0;
  }

  .producto-detalle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }

  .btn-comprar {
    margin-top: auto;
  }

  .titulo-seccion {
    margin-bottom: 40px;
  }
}










































/* ========================== */
/* Estilos responsivos móviles */
/* ========================== */
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }

  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
    max-width: 100%;
  }

  header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  position: relative;
  background-color: #000;
}


  .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 30px;
  height: auto;
}

.logo span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-top: 2px; /* Ajuste fino de alineación vertical */
}


  .logo img,
  .logo-header {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    font-size: 1.8rem;
    color: #fff;
    background: none;
    border: none;
    z-index: 1001;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: translateX(35%); /* 💡 Ajuste fino para pegarlo visualmente */
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
  }

  .menu.activo {
    display: flex;
  }

 @media (max-width: 768px) {
  .hero {
    min-height: 100vh; /* 💥 fuerza que ocupe toda la pantalla del móvil */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 💥 centra verticalmente */
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin: 0.5rem 0 1rem 0;
    padding: 0 1rem;
  }

  .hero p {
    font-size: 0.85rem;
    line-height: 1.4rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    margin-top: 1.5rem;
  }

  .hero-buttons .btn,
  #inicio .btn,
  button {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    max-width: 220px;
    width: 90%;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.2rem;
    text-align: center;
  }
}


.botones-inicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.botones-inicio a:first-child {
  margin-bottom: 0.5rem; /* 👈 esta es la separación entre los dos botones */
}


@media (max-width: 768px) {
  .producto-item:first-child {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }
}


/* Tarjetas del carrusel de terapias */
.tarjeta-servicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  margin: 1rem auto;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* Íconos SVG */
.tarjeta-servicio .icono-svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
}

/* Título */
.tarjeta-servicio h3 {
  margin: 0.8rem 0 0.4rem 0;
  font-size: 1.3rem;
}

/* Descripción */
.tarjeta-servicio p {
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin: 0.5rem 0 0.8rem 0;
}

/* Precio */
.tarjeta-servicio span {
  font-weight: bold;
  margin-bottom: 1.2rem;
}

/* Botón Agendar */
.boton-terapia {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  width: 85%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid #f8eac7;
  color: #fff;
  background: transparent;
  transition: background 0.3s ease;
}

.boton-terapia:hover {
  background-color: #f8eac7;
  color: #000;
}












@media (max-width: 768px) {
  .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tarjeta-servicio {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .mySwiper {
    width: 100%;
    overflow: hidden;
  }

  .swiper-wrapper {
    display: flex;
    transition-timing-function: ease-in-out;
  }
}























@media (max-width: 768px) {

  /* 🔳 CONTENEDOR PRINCIPAL DE EVENTO */
  .evento-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem; /* más compacto entre video y texto */
    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  /* 📹 VIDEO CON ALTURA RESPONSIVA */
  .evento-hero video {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    border-radius: 16px;
    margin: 0;
  }

  /* 📄 INFORMACIÓN DEL EVENTO */
  .evento-info {
    width: 100%;
    max-width: 960px;
    padding: 0 1.2rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
    gap: 0.8rem;
  }

  /* 🟡 SUBTÍTULO CON ÍCONO */
  .evento-header {
    display: flex;
    align-items: center;       /* ⬅️ Alineación vertical centrada */
    gap: 0.6rem;
    margin: 0.8rem 0 0.3rem;
    width: 100%;
    flex-wrap: nowrap;         /* ⬅️ Mantiene en una sola línea */
  }

  .evento-header img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .evento-header h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    word-break: break-word;
    flex: 1;
  }

  /* 📄 TEXTO GENERAL */
  .evento-info p {
    font-size: 0.82rem;
    line-height: 1.35rem;
    margin: 0;
    padding: 0;
  }

  /* 🎟 BOTÓN */
  .evento-info .boton-inscribirse {
    margin-top: 1rem;
    align-self: flex-start;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    background-color: #f8eac7;
    color: #000;
    border-radius: 24px;
    border: none;
    text-decoration: none;
  }

  /* 🔝 TÍTULO DE SECCIÓN "EVENTOS" */
  .eventos-titulo {
    margin-bottom: 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }

  .eventos-titulo h2 {
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
  }

  .eventos-titulo img {
    width: 24px;
    height: 24px;
  }
}








/* 🟡 SECCIÓN DE CONTACTO - MÓVIL (por defecto) */
.contacto-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.5rem 1rem 0 1rem;
}

.contacto-info h2 {
  width: 100%;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.contacto-info p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  line-height: 2rem;
  margin: 0.01rem 0;
  white-space: nowrap;
}

.datos-contacto {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  padding-right: 1rem;
}

.icono-contacto {
  width: 16px;
  height: 16px;
  margin-right: 0.35rem;
  flex-shrink: 0;
  color: #fff;
}

.redes-sociales {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.icono-red {
  width: 17px;
  height: 17px;
}

/* 🟡 FORMULARIO */
.formulario {
  margin-top: 0.5rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formulario input,
.formulario textarea {
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  margin-bottom: 0.1rem;
  line-height: 1rem;
  width: 100%;
  max-width: 95%;
}

/* 🔵 CHECKBOX ALINEADO A LA IZQUIERDA Y PEGADO AL TEXTO */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: #f8eac7;
  margin-top: 0.6rem;
  align-self: flex-start;
  width: 100%;
  max-width: 95%;
  flex-wrap: wrap;
}

.checkbox-container input[type="checkbox"] {
  transform: scale(0.9);
  accent-color: #f8eac7;
  margin: 0;
  appearance: auto;
}

.checkbox-container label {
  line-height: 1.2rem;
  white-space: normal;
}






/* ✅ VERSIÓN MÓVIL (aplica por defecto) */
.producto-item {
  background-color: #111;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 10px #0005;
  width: 100%;
  margin-bottom: 40px;
}

.producto-img-vertical {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto 20px auto;
}

.producto-detalle {
  color: #fff;
}

/* 🧱 Aire para el primer producto en móviles */
@media (max-width: 768px) {
  .producto-item:first-child {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }
}

/* ✅ VERSIÓN ESCRITORIO */
@media (min-width: 769px) {
  .productos-contenedor {
    display: flex;
    justify-content: center;
  }

  .productos-fila-horizontal {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .producto-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    min-height: 340px;
    width: 550px;
  }

  .producto-img-vertical {
    width: 180px;
    height: 270px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
    margin: 0;
  }

  .producto-detalle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }

  .btn-comprar {
    margin-top: auto;
  }
}

@media (min-width: 769px) {
  .titulo-seccion {
    margin-bottom: 80px; /* o 70px si lo quieres más separado */
  }
}

















@.swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  box-sizing: border-box;
}


















section {
  scroll-margin-top: 120px; /* Ajusta según la altura real de tu navbar */
}












/* ===== AJUSTES SECCIÓN DE SUSCRIPCIÓN EN MÓVIL ===== */
@media (max-width: 768px) {
  #suscripcion {
    padding: 3rem 0; /* Eliminamos padding horizontal para evitar desplazamiento */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    background-color: #000;
  }

  #suscripcion h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  #suscripcion form {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #suscripcion input[type="email"] {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    border-radius: 10px;
    background-color: #111;
    color: #fff;
    border: none;
    text-align: center;
  }

  #suscripcion button {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.2rem;
    background-color: #f8eac7;
    color: #000;
    border-radius: 30px;
    border: none;
  }

  #suscripcion p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
    margin-top: 2rem;
  }

  /* Si el ícono está en su propio contenedor */
  #suscripcion .icono-suscripcion {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}



















/* ✅ Esta regla va FUERA de cualquier media query */
/* ✅ Aplica en escritorio y pisa el azul por defecto */
html body section#contacto a[href^="tel"] {
  color: #f8eac7 !important;
  text-decoration: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  cursor: pointer;
}



















@media (max-width: 768px) {
  .redes-sociales {
    position: absolute;
    top: 13.5rem;
    right: 4.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #fff;
    gap: 0.35rem;
  }

  .icono-red {
    width: 17px;
    height: 17px;
  }
}





/* 🖥️ ESTILO DE REDES SOCIALES SOLO EN ORDENADOR */
@media (min-width: 769px) {
  .redes-sociales {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 0.1rem;
  }

  .icono-red {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
    transition: transform 0.2s ease;
  }

  .icono-red:hover {
    transform: scale(1.08);
  }
}





















