/* terapias.css - Estilos específicos para página de terapias */

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #561d25;
  background-color: #d4e79e;
}

/* CABECERA (Consistente con otras páginas) */
header {
  background-color: #264653;
  width: 100%;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-title a {
  color: #d4e79e;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* MENÚ EN UNA LÍNEA */
.nav-container {
  width: 100%;
  margin-top: 1rem;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #d4e79e;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background-color: #561d25;
}

/* CONTENIDO PRINCIPAL */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-light,
.section-dark {
  padding: 4rem 0;
  width: 100%;
}

.section-light {
  background-color: #d4e79e;
  color: #561d25;
}

.section-dark {
  background-color: #561d25;
  color: #d4e79e;
}

.text-center {
  text-align: center;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* PILARES DE TERAPIA */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pillar {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
}

.pillar-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #d4e79e;
}

.section-light .pillar-title {
  color: #561d25;
}

/* RESULTADOS */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.result-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
}

/* CITAS */
.quote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 2rem auto;
  max-width: 600px;
  position: relative;
  padding: 1rem 2rem;
}

.quote:before,
.quote:after {
  content: '"';
  font-size: 3rem;
  color: #e8491d;
  position: absolute;
}

.quote:before {
  top: -1rem;
  left: 0;
}

.quote:after {
  bottom: -2rem;
  right: 0;
}

/* BOTÓN DE CONTACTO */
.contact-link {
  display: inline-block;
  background-color: #e8491d;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: transform 0.3s;
}

.contact-link:hover {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background-color: #264653;
  color: #d4e79e;
  padding: 1.5rem 0;
  text-align: center;
}

/* RESPONSIVE */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #d4e79e;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: -3.5rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #264653;
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .main-nav ul.active {
    display: flex;
  }
  
  .pillars-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
}