/**
 * Módulo: Widget Social - Clásica
 * 
 * Estilos clásicos/tradicionales para redes sociales
 * Diseño conservador y familiar
 * 
 * @version 1.0.0
 * @date 2026-05-13
 */

/* ========================================
   WIDGET SOCIAL - CLÁSICA
   ======================================== */

.social-widget {
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.social-header {
    margin-bottom: 2rem;
}

.social-titulo {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.social-subtitulo {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.social-redes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-item:hover {
    transform: translateY(-2px);
}

.social-icono {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.social-item:hover .social-icono {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-nombre {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.social-item:hover .social-nombre {
    color: #333;
}

/* ========================================
   COLORES POR RED SOCIAL
   ======================================== */

.social-facebook .social-icono {
    background: #1877f2;
}

.social-instagram .social-icono {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-twitter .social-icono {
    background: #1da1f2;
}

.social-youtube .social-icono {
    background: #ff0000;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .social-widget {
        padding: 2rem 1.5rem;
    }
    
    .social-titulo {
        font-size: 1.8rem;
    }
    
    .social-subtitulo {
        font-size: 1.1rem;
    }
    
    .social-redes {
        gap: 1.5rem;
    }
    
    .social-icono {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
    
    .social-nombre {
        font-size: 1rem;
    }
}
