/* =========================================
           ESTILOS ESPECÍFICOS PIE
           ========================================= */
.pie-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Tarjeta Coordinadora */
.coord-card {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--u-verde-profundo);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.coord-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Acordeón Informativo */
.pie-accordion .accordion-button {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--u-verde-profundo);
    background-color: #fff;
}

.pie-accordion .accordion-button:not(.collapsed) {
    background-color: #e9f5f0;
    color: var(--u-verde-profundo);
    border-bottom: 2px solid var(--u-dorado);
}

.pie-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.pie-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Sidebar Info */
.sidebar-box {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    border-top: 4px solid var(--u-dorado);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.divider-left {
    height: 4px;
    width: 50px;
    background-color: var(--u-dorado);
    border-radius: 2px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.nee-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nee-transitoria {
    background-color: #e2e6ea;
    color: #444;
}

.nee-permanente {
    background-color: var(--u-verde-medio);
    color: white;
}

/* Equipo Multidisciplinario Grid */
.prof-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
    background: white;
}

.prof-card:hover {
    transform: translateY(-5px);
    border-color: var(--u-verde-profundo);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.prof-icon {
    font-size: 2rem;
    color: var(--u-dorado);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .hero-slide {
        height: 300px;
    }

    .hero-news-card {
        width: 90%;
        bottom: 20px;
        padding: 20px;
    }

    .coord-card {
        flex-direction: column;
        text-align: center;
    }

    .coord-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}