/* ===== FOOTER.CSS ===== */
/* Estilos para el footer de Viajes JAER */

:root {
    --rojo-oscuro: #c20000;
    --rojo-intenso: #e00000;
    --rojo-base: #ff0000;
    --rojo-claro: #ff4040;
    --rojo-suave: #ff7676;
    --plomo-oscuro: #333333;
    --plomo-medio: #555555;
    --plomo-claro: #777777;
    --plomo-suave: #aaaaaa;
    --blanco: #ffffff;
    --off-white: #f5f5f5;
    --fondo-gris: #f9f9f9;
}

/* Footer Styles */
footer {
    background-color: var(--plomo-oscuro, #333333);
    color: var(--blanco, #ffffff);
    padding: 60px 0 30px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--rojo-claro, #ff4040);
    margin-bottom: 25px;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--rojo-base, #ff0000);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.manager-info p {
    margin-bottom: 12px;
    color: #ddd;
    font-size: 1rem;
}

.manager-info i {
    color: var(--rojo-claro, #ff4040);
    width: 22px;
    margin-right: 12px;
}

.payment-methods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
}

.payment-icon {
    height: 35px;
    width: auto;
    background-color: white;
    padding: 5px;
    border-radius: 4px;
    object-fit: contain;
}

.accredited-icon {
    height: 60px;
    margin-top: 15px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 4px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    margin-top: 20px;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--plomo-medio, #555555);
    color: var(--blanco, #ffffff);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--rojo-base, #ff0000);
    transform: translateY(-3px);
}

.map-container {
    height: 200px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--plomo-medio, #555555);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.copyright {
    padding-top: 25px;
    border-top: 1px solid var(--plomo-medio, #555555);
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-column {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}