/* ============================
   RESET BÁSICO
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #222;
  background: #f5f5f5;
}

/* ============================
   CONTENEDOR GENERAL
============================ */
.contenedor {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================
   HEADER
============================ */
header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ICONOS REDONDOS */
.botones-contacto-header {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.icono-circular {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icono-telefono {
  background: #003d80;
}

.icono-whatsapp {
  background: #25d366;
}

/* ============================
   SECCIONES DE COLOR
============================ */
.seccion-color-1 {
  background: #e8f1ff;
  padding: 40px 20px;
}

.seccion-color-2 {
  background: #e9f9e9;
  padding: 40px 20px;
}

/* ============================
   TARJETAS
============================ */
.tarjetas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.tarjeta {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tarjeta img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.tarjeta h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.tarjeta p {
  margin-bottom: 8px;
}

/* PRECIO */
.precio {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
  margin-top: 10px;
}

/* ============================
   HORARIO + ASISTENCIA
============================ */
.horario-titulo {
  font-weight: 700;
  color: #0a4a7a;
  margin-top: 10px;
}

.horario-detalle {
  font-weight: 500;
  color: #0a4a7a;
  margin-bottom: 6px;
}

.asistencia {
  font-weight: 600;
  color: #0a4a7a;
  margin-bottom: 10px;
}

/* ============================
   FORMULARIO
============================ */
.formulario {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.formulario h2 {
  text-align: center;
  margin-bottom: 20px;
}

.formulario input,
.formulario select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.formulario button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.formulario button:hover {
  background: #005fcc;
}

/* ============================
   EXTRA BLOQUES
============================ */
.extra-bloque {
  max-width: 700px;
  margin: 0 auto;
}

.extra-bloque h2 {
  margin-bottom: 16px;
}

.extra-bloque ul {
  margin: 12px 0 20px 20px;
}

.boton-extra {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.boton-extra:hover {
  background: #005fcc;
}

/* ============================
   BENEFICIOS
============================ */
.beneficios-minimal {
  max-width: 700px;
  margin: 0 auto;
}

.beneficios-minimal h2 {
  text-align: center;
  margin-bottom: 20px;
}

.beneficios-minimal p {
  margin-bottom: 16px;
}

.subtexto {
  color: #444;
  font-size: 0.95rem;
}

/* ============================
   BOTÓN WHATSAPP FINAL
============================ */
.extra-bloque a[href*="wa.me"] {
  margin-top: 12px;
}

/* ============================
   FOOTER
============================ */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #003d80;
  color: white;
}

.logo-footer img {
  width: 80px;
  margin-bottom: 10px;
}

.footer-text a {
  color: #aee1ff;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

/* ============================
   HORARIO + ASISTENCIA (VISIBLES)
============================ */
.horario-titulo {
  font-weight: 700;
  color: #0a4a7a;
  margin-top: 10px;
  display: block;
}

.horario-detalle {
  font-weight: 500;
  color: #0a4a7a;
  margin-bottom: 6px;
  display: block;
}

.asistencia {
  font-weight: 600;
  color: #0a4a7a;
  margin-bottom: 10px;
  display: block;
}

/* ============================
   HORARIO + ASISTENCIA (FORZAR VISIBILIDAD)
============================ */
.horario-titulo,
.horario-detalle,
.asistencia {
  display: block !important;
  color: #0a4a7a !important;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 1rem;
}
body {
    background-color: #0a1a1f; /* azul oscuro elegante */
    margin: 0;
    padding: 0;
}
