/* ====================================================== */
/* 💾 FOOTER.CSS - ESTILO ECOPARQUE / ROSEDAL             */
/* ====================================================== */

.footer-patrimonial {
    background-color: #000080 !important;
    /* Azul Marino Exacto */
    color: #ffffff;
    padding: 40px 0;
    width: 100%;
    font-family: sans-serif !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* BLOQUE IZQUIERDO */
.footer-left {
    padding-left: 2cm;
    text-align: left;
}

/* Título en Segoe UI */
.footer-patrimonial .footer-title {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

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

/* BLOQUE DERECHO */
.footer-right {
    padding-right: 2cm;
    text-align: right;
}

.footer-right ul {
    list-style: none !important;
    /* Saca los puntitos */
    padding: 0 !important;
    margin: 0 !important;
}

.footer-right ul li {
    margin-bottom: 5px;
    list-style-type: none !important;
    /* Doble refuerzo contra puntos */
}

.footer-right ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
}

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

/* BLOQUE INFERIOR */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {

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

    .footer-container {
        flex-direction: column;
    }
}