.site-footer {
    /* Fondo sólido o degradado muy sutil para máxima elegancia */
    background: #ffffff;
    color: #0c516e;
    border-top: 1px solid #f1f5f9;
    padding: 80px 40px 40px;
    font-family: 'Inter', sans-serif;
    /* EMPUJAR EL FOOTER (Igual que el contenido) */
    margin-left: 280px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- BRANDING COLUMN --- */
.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(0.2);
    /* Si tu logo es blanco, esto lo hace oscuro para fondo blanco */
}

.brand-tagline {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    color: #29456d;
    max-width: 250px;
}

/* --- LABELS Y LISTAS --- */
.footer-label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #279a94;
    margin-bottom: 30px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    font-weight: 300;
    font-size: 13px;
    color: #202328;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* --- GRID DE MUNICIPIOS --- */
.boroughs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.boroughs-grid span {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

/* --- WHATSAPP PREMIUM --- */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #0c516e;
    font-weight: 700;
    font-size: 13px;
    gap: 10px;
    border-bottom: 2px solid #279a94;
    padding-bottom: 4px;
    transition: 0.3s;
}

.wa-dot {
    width: 8px;
    height: 8px;
    background: #279a94;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 154, 148, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(39, 154, 148, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 154, 148, 0);
    }
}

/* --- SOCIAL ICONS --- */
.social-icons-footer {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icons-footer img {
    width: 20px;
    height: 20px;
    filter: grayscale(1) opacity(0.5);
    transition: 0.3s;
}

.social-icons-footer img:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-3px);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 800;
    color: #0c516e;
    letter-spacing: 0.1em;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .site-footer {
        margin-left: 0;
        padding: 60px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}