/* Estilos para el Footer CENDI */
.main-footer-wrapper {
    width: 100%;
    background-color: #3185CB;
    border-top: 5px solid #2B75B2;
    color: #FFFFFF;
    padding-top: 60px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-col-logo {
    flex: 1.2;
}

.footer-col-contact {
    flex: 2;
    /* Más ancha para la dirección larga */
}

.footer-col-links,
.footer-col-hours {
    flex: 0.8;
    /* Menos anchas para listas cortas */
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 5px;
    display: block;
}

.footer-logo-text {
    font-family: 'Lobster Two', cursive;
    font-size: 28px;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-family: 'Lobster Two', cursive;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column li {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #E9E9E9;
}

/* Fila Inferior del Footer */
.footer-bottom-row {
    width: 100%;
    background-color: #2B75B2;
    padding: 20px 0;
    color: #FFFFFF;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-developed-by {
    font-size: 14px;
    color: #FFFFFF;
}

.footer-developed-by a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-developed-by a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

.footer-social-icons a {
    color: #FFFFFF;
    font-size: 24px;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #E9E9E9;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-logo {
        margin: 0 auto 5px auto;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}