/* ============================================
   FOOTER
============================================ */
footer {
    background-color: #C9BDB1;
    color: #2F2F2F;
    margin-top: 30px;
}

.footer-widgets-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #C9BDB1;
    color: #2F2F2F;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-column {
    flex: 1 1 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.footer-widget {
    width: 100%;
}

.footer-widget-title {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    color: #2F2F2F;
    display: block;
    width: 100%;
}

/* Reset de estilos para menús */
.footer-widget .menu,
.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer-widget .menu-footer-container {
    width: 100%;
    display: block;
}

/* Forzar comportamiento vertical en todos los navegadores */
.footer-widget .menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.footer-widget .menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-widget .menu li a {
    color: #2F2F2F;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
    display: inline-block;
    width: auto;
    padding: 2px 0;
}

.footer-widget .menu li a:hover {
    color: #2F2F2F;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #C9BDB1;
    color: #CCC;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-column {
        flex: 1 1 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .footer-column {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-widgets-container {
        padding: 30px 15px;
    }
}