/* --- FOOTER ESTILO WEBOEBA (IGUAL A LA BOCA) --- */
.footer-weboeba {
    background-color: #004080;
    color: #ffffff;
    padding: 40px 0 20px 0;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    /* Limita el ancho para que no se peguen a los bordes */
    margin: 0 auto;
    padding: 0 60px;
    /* Aumentamos el padding para "empujar" los textos hacia adentro */
    box-sizing: border-box;
}

/* Bloque Izquierdo (Ahora más hacia la derecha) */
.footer-left h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: bold;
}

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

/* Bloque Derecho (Ahora más hacia la izquierda) */
.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

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

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

.footer-right a:hover {
    text-decoration: underline;
}

/* Línea Blanca con margen de 2cm aprox */
.footer-divider {
    border: none;
    border-top: 1px solid #ffffff;
    width: calc(100% - 120px);
    /* Ajustado para simular los 2cm por lado */
    margin: 30px auto 15px auto;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    padding-top: 5px;
}

/* --- AJUSTE PARA MÓVILES --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

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

    .footer-left h3 {
        font-size: 22px;
    }

    .footer-left p {
        font-size: 12px;
        margin: 4px 0;
    }

    .footer-right {
        width: 100%;
    }

    .footer-right ul {
        text-align: center;
    }

    .footer-divider {
        width: 80%;
    }
}