/* Estilos para el Footer */
.main-footer {
    background-color: #4e2602;
    color: #ffffff;
    padding: 50px 20px;
    margin-top: 50px;
    width: 100%;
    box-sizing: border-box;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.2em;
    text-transform: uppercase;
}

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

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

.footer-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95em;
}

.footer-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-footer {
    max-width: 180px;
    /*filter: brightness(0) invert(1);*/
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85em;
    color: rgba(255,255,255,0.6);
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .footer-column {
        text-align: center;
        min-width: 100%;
    }
    .footer-column h3 {
        display: inline-block;
    }
}