/* =========================================
   FOOTER COMPLETO - FIX ALINEACIÓN + HOVERS
   ========================================= */

.footer-custom {
    background-color: #004341;
    color: #ffffff;
}

.footer-titulo {
    color: #b08d57;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.text-muted-custom {
    color: rgba(255, 255, 255, 0.855);
}

.footer-hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* VERSÍCULO */
.school-motto {
    border-left: 3px solid #b08d57;
    padding-left: 15px;
    font-size: 0.9rem;
}

/* ENLACES RÁPIDOS Y BOTTOM */
.footer-links li {
    padding: 4px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.833) !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #b08d57 !important;
}

/* CONTACTO (TELÉFONO Y EMAIL) */
.footer-contacto {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contacto li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contacto a {
    text-decoration: none !important; /* Adiós subrayado */
    color: rgba(255, 255, 255, 0.825) !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-contacto a:hover {
    color: #b08d57 !important; /* Dorado en hover */
}

/* REDES SOCIALES - RECUPERANDO HOVERS DE COLORES */
.footer-social {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f1f1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social i {
    font-size: 1.3rem;
    color: #b08d57; /* Color base dorado */
    transition: color 0.3s;
}

/* Efectos de color específicos al pasar el mouse */
.footer-social a:hover i { 
    color: #ffffff !important; /* El icono se vuelve blanco */
}

.footer-social .instagram:hover { background: #E1306C !important; }
.footer-social .facebook:hover  { background: #1877F2 !important; }
.footer-social .youtube:hover   { background: #FF0000 !important; }

/* RESPONSIVE */
@media (max-width: 991px) { 
    .footer-custom {
        text-align: center !important;
    }

    .footer-social {
        justify-content: center !important;
    }

    .footer-contacto li {
        justify-content: center;
        text-align: center;
    }

    .school-motto {
        border-left: none; 
        border-top: 3px solid #b08d57;
        padding-left: 0;
        padding-top: 10px; 
        display: inline-block; 
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-contacto li {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
}