/* Footer Main Section */
.footer-main {
    background-color: black;
    padding: 60px 0 40px;
}

.footer-bottom {
    background-color: white;
    padding: 20px 0;
}

.footer-column {
    height: 100%;
}

/* Column 1 - Logo & Description */
.logo_footer {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
    transition: 0.5s all ease;
    display: block;
}

.logo_footer:hover {
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.text_footer {
    color: #fff;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.6;
    font-size: 14px;
}

/* Column Titles */
.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Titulos-Bold', sans-serif;
}

.contact-label {
    color: #39A4DC;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 0;
    font-family: 'Cuerpos-Semibold', sans-serif;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.red_footer {
    width: 40px;
    height: auto;
    transition: 0.3s all ease;
}

.red_footer:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

/* Column 2 - Quick Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 5px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: #39A4DC;
    padding-left: 10px;
}

/* Column 3 - Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.text_footer_2 {
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}

.text_footer_3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.text_footer_3 a {
    color: #39A4DC;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text_footer_3 a:hover {
    color: #123e61;
    text-decoration: underline;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .logo_footer {
        width: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main {
        padding: 30px 0 20px;
        text-align: center;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 40px;
    }

    .logo_footer {
        width: 180px;
        margin-left: auto;
        margin-right: auto;
    }

    .text_footer {
        text-align: center;
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
    }

    .red_footer {
        width: 38px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .contact-label {
        font-size: 13px;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .text_footer_2 {
        font-size: 14px;
    }

    .text_footer_3 {
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .footer-main {
        padding: 25px 0 15px;
    }

    .logo_footer {
        width: 160px;
    }

    .text_footer {
        font-size: 12px;
    }

    .red_footer {
        width: 35px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .text_footer_2 {
        font-size: 13px;
    }

    .text_footer_3 {
        font-size: 11px;
    }
}
