/**
 * Módulo: Widget Social - Template Montecristo
 *
 * Estilos personalizados para el widget de redes sociales.
 * Mantiene coherencia visual con el resto del template.
 *
 * @version 1.0.0
 * @date 2026-07-21
 */

/* ========== WIDGET SOCIAL ========== */

#widget-social {
    padding: 3rem 1.5rem;
    background-color: var(--color-blanco);
}

#widget-social .social-widget {
    max-width: 100rem;
    margin: 0 auto;
}

#widget-social .social-header {
    text-align: center;
    margin-bottom: 2rem;
}

#widget-social .social-titulo {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

#widget-social .social-subtitulo {
    font-size: 1.4rem;
    color: var(--color-parrafo);
    margin: 0;
}

/* ========== REDES SOCIALES ========== */

#widget-social .social-redes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

#widget-social .social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
    transition: all 0.2s ease;
}

#widget-social .social-icono {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-blanco);
    transition: all 0.2s ease;
}

#widget-social .social-nombre {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-negro);
    transition: all 0.2s ease;
}

/* Colores específicos por red social */

#widget-social .social-facebook .social-icono {
    background-color: #1877f2;
}

#widget-social .social-facebook:hover .social-icono {
    background-color: #0c63d4;
    transform: scale(1.1);
}

#widget-social .social-instagram .social-icono {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

#widget-social .social-instagram:hover .social-icono {
    transform: scale(1.1);
}

#widget-social .social-youtube .social-icono {
    background-color: #ff0000;
}

#widget-social .social-youtube:hover .social-icono {
    background-color: #cc0000;
    transform: scale(1.1);
}

#widget-social .social-twitter .social-icono {
    background-color: #000000;
}

#widget-social .social-twitter:hover .social-icono {
    background-color: #333333;
    transform: scale(1.1);
}

#widget-social .social-linkedin .social-icono {
    background-color: #0077b5;
}

#widget-social .social-linkedin:hover .social-icono {
    background-color: #005885;
    transform: scale(1.1);
}

#widget-social .social-tiktok .social-icono {
    background-color: #000000;
}

#widget-social .social-tiktok .social-icono i {
    display: inline-block !important;
    visibility: visible !important;
    font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands', 'FontAwesome' !important;
    font-weight: 400 !important;
    color: #ffffff !important;
}

#widget-social .social-tiktok:hover .social-icono {
    background-color: #333333;
    transform: scale(1.1);
}

#widget-social .social-item:hover .social-nombre {
    color: var(--color-primary);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 576px) {
    #widget-social .social-titulo {
        font-size: 2rem;
    }

    #widget-social .social-subtitulo {
        font-size: 1.3rem;
    }

    #widget-social .social-redes {
        gap: 1.5rem;
    }

    #widget-social .social-icono {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }

    #widget-social .social-nombre {
        font-size: 1.1rem;
    }
}
