/**
 * Footer CSS - Municipalidad de Devoto
 * 
 * Estilos del footer migrados desde el sitio legacy.
 * 
 * ESTRUCTURA:
 * - 4 columnas en desktop (2fr 1fr 1fr 1.2fr)
 * - 2 columnas en tablet
 * - 1 columna en móvil
 * - Footer bottom con copyright + logo Creartel
 * 
 * Sitio legacy: https://nuevaweb.devoto.gov.ar/
 * Fecha: 2026-05-08
 */

/* ========================================
   FOOTER PRINCIPAL
   ======================================== */

#footer-principal {
    background: #1e293b;
    color: #e2e8f0;
    padding: 5rem 0 0 0;
}

/* ========================================
   CONTENIDO DEL FOOTER (4 COLUMNAS)
   ======================================== */

#footer-principal .footer-contenido {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #334155;
}

/* ========================================
   COLUMNA DE INFORMACIÓN PRINCIPAL
   ======================================== */

#footer-principal .footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#footer-principal .footer-logo-escudo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

#footer-principal .footer-logo-escudo img {
    object-fit: contain;
}

#footer-principal .footer-contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.6;
}

#footer-principal .footer-contacto-item i {
    color: #6a9f3a;
    font-size: 1.4rem;
    margin-top: 0.2rem;
}

/* ========================================
   COLUMNAS DE ENLACES
   ======================================== */

#footer-principal .footer-columna-titulo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6a9f3a;
    margin: 0 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #6a9f3a;
}

#footer-principal .footer-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#footer-principal .footer-lista li {
    font-size: 1.3rem;
    line-height: 1.6;
}

#footer-principal .footer-lista a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

#footer-principal .footer-lista a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

/* ========================================
   TELÉFONOS ÚTILES
   ======================================== */

#footer-principal .footer-telefonos li {
    color: #cbd5e1;
}

#footer-principal .footer-telefonos strong {
    color: #6a9f3a;
    font-weight: 700;
    font-size: 1.4rem;
}

/* ========================================
   PIE DEL FOOTER
   ======================================== */

#footer-principal .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
}

#footer-principal .footer-copyright {
    font-size: 1.3rem;
    color: #94a3b8;
    margin: 0;
}

#footer-principal .footer-logo-creartel {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

#footer-principal .footer-logo-creartel:hover {
    opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 992px) {
    #footer-principal .footer-contenido {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    #footer-principal .footer-info {
        grid-column: 1 / -1;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */

@media (max-width: 576px) {
    #footer-principal .footer-contenido {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    #footer-principal .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
