/* ========== RESET BÁSICO ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(180deg, #dc2626 0%, #fef08a 15%, #fbbf24 30%, #dc2626 45%, #166534 60%, #15803d 75%, #dc2626 90%, #fef08a 100%);
    color: #3d2b1f;
    min-height: 100vh;
}

/* ========== MENÚ DE NAVEGACIÓN ========== */
.navbar {
    background: linear-gradient(135deg, #5c4033, #3d2b1f);
    width: 100%;
    box-shadow: 0 4px 20px rgba(61, 43, 31, 0.4);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu {
    flex: 1;
    text-align: center;
    list-style: none;
}

.menu a {
    display: block;
    text-decoration: none;
    color: #f5f0e6;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.menu a:hover {
    background-color: #8b6914;
    color: #fff;
}

/* ========== LÍNEAS DIVISORAS ========== */
hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, #8b6914, #5c4033, #8b6914, transparent);
    margin: 0;
}

/* ========== HEADER MISIÓN ========== */
.header-mision {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(61, 43, 31, 0.7), rgba(61, 43, 31, 0.7)),
                url('https://images.unsplash.com/photo-1507692049790-de58290a4334?w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.header-mision h1 {
    font-size: 48px;
    color: #f5f0e6;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 2px;
}

.subtitulo-header {
    font-size: 22px;
    font-style: italic;
    color: #d4af37;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* ========== INTRODUCCIÓN ========== */
.introduccion {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.intro-imagen {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.intro-imagen img {
    max-width: 280px;
    filter: drop-shadow(0 10px 30px rgba(61, 43, 31, 0.3));
    transition: transform 0.4s ease;
}

.intro-imagen img:hover {
    transform: rotate(5deg) scale(1.08);
}

.parrafo-intro {
    flex: 2;
    min-width: 320px;
    font-size: 19px;
    line-height: 2;
    text-align: justify;
    background-color: #fff;
    padding: 40px;
    border-radius: 0;
    border-left: 6px solid #8b6914;
    box-shadow: 8px 8px 0 #5c4033;
}

/* ========== SECCIÓN VERDAD ========== */
.seccion-verdad {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.seccion-verdad h2 {
    font-size: 36px;
    color: #5c4033;
    margin-bottom: 30px;
    font-weight: normal;
    border-bottom: 3px double #8b6914;
    display: inline-block;
    padding-bottom: 10px;
}

.parrafo-verdad {
    font-size: 18px;
    line-height: 2;
    text-align: justify;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(61, 43, 31, 0.15);
}

.parrafo-verdad strong {
    color: #8b6914;
}

.parrafo-verdad em {
    color: #5c4033;
    font-weight: 600;
}

/* ========== SECCIÓN PILARES ========== */
.seccion-pilares {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #3d2b1f;
}

.seccion-pilares h2 {
    font-size: 36px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
}

.intro-pilares {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #c4b89b;
}

.pilares-contenedor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pilar {
    background: linear-gradient(145deg, #f5f0e6, #e8dcc8);
    padding: 35px;
    border-radius: 0;
    border-bottom: 5px solid #8b6914;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pilar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.pilar:hover::before {
    left: 100%;
}

.pilar:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pilar h3 {
    font-size: 22px;
    color: #5c4033;
    margin-bottom: 18px;
    font-weight: normal;
}

.pilar p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a3728;
}

/* ========== SECCIÓN ADAPTADA ========== */
.seccion-adaptada {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 40px;
}

.seccion-adaptada h2 {
    font-size: 36px;
    color: #5c4033;
    text-align: center;
    margin-bottom: 40px;
    font-weight: normal;
}

.adaptada-contenido {
    background-color: #fff;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(61, 43, 31, 0.15);
    border: 2px solid #e8dcc8;
}

.parrafo-adaptada {
    font-size: 19px;
    margin-bottom: 25px;
    color: #3d2b1f;
}

.parrafo-adaptada strong {
    color: #8b6914;
}

.lista-presencia {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 35px 0;
}

.lista-presencia li {
    background: linear-gradient(135deg, #5c4033, #3d2b1f);
    color: #f5f0e6;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.lista-presencia li:hover {
    background: linear-gradient(135deg, #8b6914, #d4af37);
    color: #3d2b1f;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #5c4033, #3d2b1f);
    margin-top: 0;
}

.footer p {
    font-size: 18px;
    color: #c4b89b;
}

.footer strong {
    color: #d4af37;
    font-size: 26px;
    letter-spacing: 3px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .pilares-contenedor {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
    }

    .menu a {
        padding: 15px;
        border-bottom: 1px solid rgba(245, 240, 230, 0.2);
    }

    .header-mision h1 {
        font-size: 30px;
    }

    .subtitulo-header {
        font-size: 16px;
    }

    .introduccion {
        flex-direction: column;
        padding: 40px 20px;
    }

    .intro-imagen img {
        max-width: 200px;
    }

    .parrafo-intro,
    .parrafo-verdad {
        font-size: 16px;
        padding: 25px;
    }

    .seccion-pilares h2,
    .seccion-verdad h2,
    .seccion-adaptada h2 {
        font-size: 26px;
    }

    .pilar {
        padding: 25px;
    }

    .pilar h3 {
        font-size: 18px;
    }

    .lista-presencia {
        flex-direction: column;
        align-items: center;
    }

    .adaptada-contenido {
        padding: 30px 20px;
    }
}