/* ======================================== */

/* FOOTER.CSS — Estilos del Footer RRI      */

/* ======================================== */

/* ============================= */

/* CONTENEDOR GENERAL            */

/* ============================= */

.footer-rri {
    width: 100%;
    font-family: inherit;
}

/* ============================= */

/* PARTE SUPERIOR                */

/* ============================= */

.footer-top {
    background: #032ff1fa;
    color: #ffffff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* ============================= */

/* COLUMNA IZQUIERDA             */

/* ============================= */

.footer-left {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-left h3 {
    margin: 0;
    font-size: 20px;
}

.footer-left p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ============================= */

/* COLUMNA DERECHA               */

/* ============================= */

.footer-right {
    display: flex;
    align-items: center;
}

/* ============================= */

/* REDES SOCIALES                */

/* ============================= */

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #ff002b;
    transform: translateY(-3px);
}

/* ============================= */

/* PARTE INFERIOR                */

/* ============================= */

.footer-bottom {
    background: #161616;
    color: #ffffff;
    text-align: center;
    padding: 20px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* ============================= */

/* LOGO DEL FOOTER               */

/* ============================= */

.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 10px;
}

/* ============================= */

/* RESPONSIVE                    */

/* ============================= */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}