/* terapias.css - Estilos específicos para página de terapias */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #561d25;
    background-color: #d4e79e;
}

/* CABECERA */
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;
}

/* NAVEGACIÓN */
.nav-container {
    width: 100%;
    margin-top: 1rem;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    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;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #561d25;
}

/* CONTENEDOR GENERAL */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-light, .section-dark, .section-youtube {
    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-size: 2rem; margin-bottom: 1.5rem; font-family: 'Roboto', sans-serif; }
h3 { font-size: 1.5rem; margin-bottom: 1.5rem; font-family: 'Roboto', sans-serif; }

/* RECUADROS DE CONTENIDO */
.pillars-grid, .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar, .result-item {
    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;
}

/* SECCIÓN YOUTUBE (NUEVA) */
.section-youtube {
    background-color: #c9df8a; /* Un verde ligeramente más intenso para resaltar */
    border-top: 1px solid rgba(86, 29, 37, 0.1);
}

.youtube-cta { margin-top: 2rem; }

.youtube-btn {
    display: inline-block;
    background-color: #561d25;
    color: #d4e79e !important;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* CITAS Y BOTÓN CONTACTO */
.quote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    position: relative;
}

.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: 0.3s;
}

.contact-link:hover { transform: scale(1.05); }

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; }

@media (max-width: 768px) {
    .hamburger { display: block; position: absolute; right: 1rem; top: 1.5rem; }
    .main-nav ul { display: none; flex-direction: column; width: 100%; background-color: #264653; padding: 1rem; }
    .main-nav ul.active { display: flex; }
}