/**
 * Módulo: Widget Social - Devoto
 * 
 * Estilos específicos del legacy de Devoto para redes sociales
 * Basado en: d:\sitios\devoto_nuevo.local\theme\estilos\especificos\template_portada.css
 * 
 * @version 1.0.0
 * @date 2026-05-12
 */

/* ========================================
   WIDGET SOCIAL - DEVOTO
   ======================================== */

.social-widget {
    border-radius: 0;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: none;
}

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

.social-titulo {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.8rem 0;
}

.social-subtitulo {
    font-size: 1.4rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

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

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

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

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

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

.social-nombre {
    font-size: 1.3rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s ease;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .social-widget {
        padding: 3rem 2rem;
    }
    
    .social-titulo {
        font-size: 2.4rem;
    }
    
    .social-subtitulo {
        font-size: 1.3rem;
    }
    
    .social-redes {
        gap: 1rem;
    }
    
    .social-icono {
        width: 70px;
        height: 70px;
        font-size: 2.8rem;
    }
    
    .social-nombre {
        font-size: 1.3rem;
    }
}
