/* ===== ESTILOS DEL FOOTER INSTITUCIONAL ===== */
.footer-section {
    position: relative;
    z-index: 10;
}

/* ESCUDO CENTRAL */
.footer-crest-img {
    max-height: 110px;
    width: auto;
    object-fit: contain;
}

/* BOTONES CIRCULARES DE LLAMADA */
.footer-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-blue {
    background-color: #0088cc;
}

.btn-red {
    background-color: #e63946;
}

/* FRANJA INFERIOR Y ENLACES */
.bg-light-gray {
    background-color: #f8f9fa;
}

.hover-link:hover {
    color: #0088cc !important;
    text-decoration: underline !important;
}

/* RESPONSIVIDAD */
@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }

    .footer-bottom-bar p {
        font-size: 0.78rem;
    }
}