.footer-section {
    background: url('/img/fulltechnexus/principal/Fondo8.png') no-repeat center top;
    background-size: 100% 100%;
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Montserrat', sans-serif;

}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    gap: 20px;
}



.footer-left,
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.footer-social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.footer-social-icons img:hover {
    transform: scale(1.2);
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    text-align: center;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;

}

.footer-column ul {
    list-style: none;
    padding: 0;
    font-weight: 200;

}

.footer-column ul li {
    font-size: 20px;
    font-weight: 600;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;

}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    font-size: 14px;
    color: #b0b0b0;
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-social-icons {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}