/* ==========================================================================
   ESTILOS DE FOOTER INSTITUCIONAL - PURÉPERO, MICHOACÁN
   ========================================================================== */

/* Tarjetas de Botones Destacados (SISGE, Declaración, Correo) */
.footer-btn-card {
    background-color: #242424;
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-btn-card:hover {
    background-color: #2e2e2e;
    border-color: #FFCC00;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.25);
}

.footer-btn-card .btn-icon-wrapper {
    transition: transform 0.3s ease;
}

.footer-btn-card:hover .btn-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Enlaces de navegación */
.footer-link {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #FFCC00;
    padding-left: 5px;
}

/* Botones de Redes Sociales */
.social-icon-btn {
    width: 38px;
    height: 38px;
    background-color: #262626;
    color: #FFFFFF;
    border: 1px solid rgba(255, 204, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: #FFCC00;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

/* Transiciones complementarias */
.hover-yellow:hover {
    color: #FFCC00 !important;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}