/* ====================================================== */
/* 💾 FOOTER.CSS - ECOPARQUE 12 (TIPO SEGOE UI)           */
/* ====================================================== */

.footer-patrimonial {
    background-color: #004080;
    color: #ffffff;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    font-family: 'Tahoma', sans-serif;
    /* Fuente base para el resto */
}

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

/* TÍTULO WEB OEBA CON SEGOE UI */
.footer-patrimonial .footer-title {
    /* Aplicamos Segoe UI específicamente aquí */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    /* Un poquito más grande para que luzca la fuente */
    font-weight: bold;
    margin: 0 0 10px 0;
    /* Dentro de la regla .footer-patrimonial .footer-title */
        color: #e0e0e0;
        /* Este es un blanco suave/grisáceo muy elegante */
    line-height: 1.2;
    letter-spacing: 0.5px;
    /* Para que sea más legible */
}

/* BLOQUE IZQUIERDO (Márgen de 2cm) */
.footer-left {
    padding-left: 2cm;
    text-align: left;
    flex: 1;
}

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

/* BLOQUE DERECHO (Márgen de 2cm) */
.footer-right {
    padding-right: 2cm;
    text-align: right;
    flex: 1;
}

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

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

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

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

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

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

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

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