/* FOOTER GENERAL */
.site-footer {
    background-color: var(--secondary-color); /* fondo oscuro */
    color: var(--primary-color-soft); /* texto principal */
    padding: 2rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FILA 1: Redes sociales */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid #111;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.social-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(0); /* icono negro por defecto */
}

.social-btn:hover img {
    filter: invert(1); /* iconos se vuelven blancos al hacer hover */
}

.social-btn:hover {
    background-color: #111; /*al hacer blancos los iconos, es necesario invertir el background color */
}

/* FILA 2: Enlaces en columnas */
.footer-links-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--primary-color-soft);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color); 
}

/* Copiright */
.footer-copy {
    padding-top: 8px;
    text-align: center;
    font-size: 1rem;
    opacity: 1;
    color: var(--primary-color-soft);
}

/* Desktop */
@media(min-width: 768px){
    .footer-links-columns {
        flex-direction: row;
        justify-content: center;
        gap: 5rem;
        text-align: left;
    }

    .footer-column {
        flex: 1;
    }

}