/* ===== ESTILOS DEL FOOTER COPÁNDARO ===== */

/* FONDO OSCURO INSTITUCIONAL */
.bg-dark-copandaro {
    background-color: #1e2530 !important;
}

/* TAMAÑO DE FUENTE PEQUEÑO Y LEGIBLE */
.fs-7 {
    font-size: 0.82rem;
    color: #94a3b8;
}

/* EFECTO EN ENLACES DE AVISO DE PRIVACIDAD Y VALCORP */
.footer-link {
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: #f59e0b !important;
    text-decoration: underline !important;
}

/* BOTONES/CAJAS CUADRADAS DE REDES SOCIALES */
.social-box {
    width: 38px;
    height: 38px;
    background-color: #f59e0b !important;
    /* Amarillo/Naranja de Copándaro */
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-box:hover {
    background-color: #d97706 !important;
    transform: translateY(-3px);
}

/* BOTÓN FLOTANTE VOLVER ARRIBA */
.btn-scroll-top {
    position: absolute;
    right: 20px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.25s ease;
}

.btn-scroll-top:hover {
    background-color: #f59e0b;
    color: #ffffff;
}