/* ====================================================== */
/* 💾 FOOTER.CSS - RESTAURADO IGUAL AL ROSEDAL            */
/* ====================================================== */

.footer-patrimonial {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-color: #004080;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

/* 2. ESTILO DEL TÍTULO (RECUPERADO) */
.footer-patrimonial .footer-title {
    font-size: 2em;
    font-weight: 500;
    margin: 0;
    text-align: left;
    color: #ffffff;
}

/* 3. BLOQUE IZQUIERDO */
.footer-left {
    padding-left: 2cm;
    /* MARGEN IZQUIERDO QUE BUSCABAS */
    text-align: left;
    flex-grow: 1;
    color: #ffffff;
}

/* 4. BLOQUE DERECHO (Enlaces) */
.footer-right {
    padding-right: 2cm;
    /* MARGEN DERECHO QUE BUSCABAS */
    text-align: right;
    flex-grow: 0.5;
    color: #f8f8ff;
}

.footer-left p {
    margin: 0 0 8px 0;
    line-height: 1.5;
    color: #ffffff;
}

.footer-patrimonial .footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-patrimonial .footer-right ul li {
    margin-bottom: 8px;
}

.footer-patrimonial .footer-right ul li a {
    text-decoration: none;
    color: #f8f8ff;
    /* Blanco Brillante original */
}

.footer-patrimonial .footer-right ul li a:hover {
    text-decoration: underline;
    color: #ffd700;
}

/* 6. BLOQUE INFERIOR */
.footer-patrimonial .footer-bottom {
    flex-basis: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #e0e0e0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-patrimonial {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-patrimonial .footer-title {
        text-align: center;
    }
}