/* Estilos para Armonía Vital Noticias – versión con artículos extensos */

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Encabezado */
header {
  background-color: #37474F;
  color: #fff;
  padding: 1.5em 2em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 1.8em;
  margin: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #FFCC80;
}

/* Sección de bienvenida */
.hero-simple {
  padding: 3em 2em;
  background: linear-gradient(90deg, #81D4FA 0%, #B3E5FC 100%);
  text-align: center;
  color: #0D47A1;
}

.hero-simple h2 {
  font-size: 2.2em;
  margin-bottom: 0.5em;
}

.hero-simple p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

/* Secciones generales */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2em 1.5em;
}

.section h2 {
  color: #37474F;
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.8em;
}

/* Artículos */
.article {
  margin-bottom: 3em;
}

.article h3 {
  color: #00695C;
  margin-top: 0;
  font-size: 1.6em;
}

.article p {
  margin-bottom: 1em;
  text-align: justify;
}

/* Cursos detallados */
.course-detailed {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 1.5em;
  margin-bottom: 2em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.course-detailed h3 {
  margin-top: 0;
  color: #004D40;
  font-size: 1.5em;
}

.course-detailed p {
  margin-bottom: 1em;
}

/* Sobre nosotros y FAQ */
.about p {
  margin-bottom: 1em;
  text-align: justify;
}

.faq-item {
  margin-bottom: 1.5em;
}

.faq-item h4 {
  margin-bottom: 0.3em;
  color: #00796B;
  font-size: 1.3em;
}

/* Formulario de inscripción */
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 600px;
  margin: 0 auto;
}

.form-section label {
  font-weight: bold;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section select {
  padding: 0.6em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9em;
}

.cta-button {
  display: inline-block;
  background-color: #00695C;
  color: #fff;
  padding: 0.7em 1.5em;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #004D40;
}

.success-message {
  color: #2E7D32;
  font-size: 0.9em;
  margin-top: 0.5em;
}

/* Pie de página */
.footer {
  background-color: #263238;
  color: #fff;
  text-align: center;
  padding: 2em 1em;
}

.footer p {
  margin: 0.5em 0;
}

.footer a {
  color: #BBDEFB;
  text-decoration: none;
  margin: 0 0.5em;
  font-size: 0.9em;
}

.footer a:hover {
  color: #90CAF9;
}

/* Banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(38, 50, 56, 0.95);
  color: #fff;
  padding: 1em;
  text-align: center;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0 0 0.5em;
  font-size: 0.9em;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
}

.cookie-button {
  padding: 0.5em 1.2em;
  background-color: #FFCC80;
  color: #37474F;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-button:hover {
  background-color: #FFB74D;
}

/* Responsividad */
@media (max-width: 768px) {
  .main-nav ul {
    gap: 1em;
  }
  .hero-simple h2 {
    font-size: 1.6em;
  }
  .hero-simple p {
    font-size: 1em;
  }
}