.footer {
    background-color: #003087;
    color: #fff;
    padding: 0;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #0053a0;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0053a0;
    transform: translateY(-3px);
}

.schedule-info, .contact-info {
    list-style: none;
    padding: 0;
}

.schedule-info li, .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.schedule-info i, .contact-info i {
    width: 20px;
    color: #0053a0;
    margin-top: 3px;
}

.schedule-details, .contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-details span:first-child,
.contact-details span:first-child {
    color: #fff;
    font-weight: 500;
}

.schedule-details span:last-child,
.contact-details span:last-child {
    color: #e0e0e0;
}

.contact-details iframe {
    border: 2px solid #0053a0; /* Opcional: bordes en el mapa */
    border-radius: 5px;
    margin-top: 10px;
}

.footer-bottom {
    background-color: #002670;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 30px 15px;
    }

    .footer-section h3 {
        font-size: 1.5em;
    }

    .footer-section h4 {
        font-size: 1.1em;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .schedule-info li, .contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .schedule-info i, .contact-info i {
        margin: 0;
    }
}
