/* ===== FOOTER MODERNO, ELEGANTE Y FRESCO ===== */
.footer-section {
    width: 100%;
    background:
        linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
        url('https://caosgrowth.com/storage/img/caos-background.webp') no-repeat center center/cover;
    
    color: #f2f2f0;
    padding: 80px 12%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 250px;
    min-width: 200px;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #E67E22;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #E67E22;
    margin-top: 8px;
    border-radius: 2px;
}

/* Texto descriptivo */
.footer-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0de;
    font-weight: 500; /* más cuerpo, más elegante */
    margin: 8px 0;
}

/* Links */
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

/* ICONOS */
.social-icon {
    width: 22px;
    height: 22px;
    fill: #E67E22;
    stroke: #E67E22;
    transition: 
        transform 0.3s ease,
        fill 0.3s ease,
        stroke 0.3s ease;
}

/* HOVER */
.social-link:hover .social-icon {
    transform: scale(1.2) rotate(-8deg);
    fill: #E67E22;
    stroke: #E67E22;
}


.footer-links li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #f2f2f0;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #E67E22;
    transform: translateX(4px) scale(1.02);
}

/* Redes sociales verticales */
.footer-socials {
    display: flex;
    flex-direction: column; /* ahora se apilan */
    gap: 15px;              /* espacio entre cada icono */
    margin-top: 20px;
    align-items: flex-start; /* se alinean a la izquierda, cambia a center si querés centrarlos */
}

.social-link {
    color: #f2f2f0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #E67E22;
    transform: scale(1.25) rotate(-5deg);
}


/* Footer bottom */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 0.95rem;
    color: #b0b0aa;
    letter-spacing: 1px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-section {
        padding: 60px 6%;
    }

    .footer-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}
