/* ==========================================================================
   6. FOOTER INSTITUCIONAL REDISEÑADO (Estilo Minimalista)
   ========================================================================== */
.site-footer {
    background: #081c31; /* Tu azul institucional */
    color: #ffffff;
    font-family: sans-serif;
    margin-top: 50px;
}

.footer-top {
    padding: 70px 5% 50px;
}

.footer-main-grid {
    display: grid;
    /* 3 Columnas: Izquierda normal, Centro más ancho, Derecha normal */
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 30px;
    align-items: center; /* Centra todo verticalmente */
}

/* --- Columna 1: Brand --- */
.footer-col-brand .footer-logo {
    height: 100px;
    margin-bottom: 15px;
}
.footer-col-brand p {
    font-size: 0.9rem;
    color: #b0c4de;
    line-height: 1.5;
    margin: 0;
}

/* --- Columna 2: Newsletter --- */
.footer-col-newsletter {
    padding: 0 20px;
}
.footer-col-newsletter h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffffff;
}
.newsletter-box {
    display: flex;
    width: 100%;
    max-width: 480px;
}
.newsletter-box input {
    flex: 1;
    background: transparent;
    border: 1px solid #7a8d9f;
    padding: 12px 15px;
    color: white;
    font-size: 0.8rem;
    outline: none;
}
.newsletter-box input::placeholder {
    color: #7a8d9f;
}
.newsletter-box button {
    background: #e6b8a2; /* Rosa pastel de tu imagen de referencia */
    color: #111;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-box button:hover {
    background: #ffffff;
}

/* --- Columna 3: Social y Contacto --- */
.footer-col-social {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}
.social-section h4, .footer-contact-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffffff;
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #ffffff;
    color: #0a1a2b;
}
.footer-phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-phone i {
    color: #25d366;
}

/* --- Legal Bar (Fondo con contraste) --- */
.legal-bar {
    background: #050d16; /* Un azul un poco más oscuro para hacer el contraste de tu imagen */
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px 5%;
    text-align: center;
    font-size: 0.85rem;
    color: #8c9eb5;
    line-height: 1.8;
}
.legal-bar strong {
    color: white;
}

/* --- Diseño para Celulares --- */
@media (max-width: 900px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-col-social {
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }
    .newsletter-box {
        margin: 0 auto;
    }
}