/*
═══════════════════════════════════════════════════════════════════════════════
    SOCIAL ICONS FIX - Dispositivo de Corrección de Iconos de Stewie
    
    Ajustes de tamaño y estilo para iconos de redes sociales
    Usa Bootstrap Icons (librería gratuita)
═══════════════════════════════════════════════════════════════════════════════
*/

/* ============================================================================
   TAMAÑO DE ICONOS SOCIALES
   ============================================================================ */

/* Iconos en el sidebar y footer - Tamaño pequeño */
.th-social a i,
.th-social a .bi {
    font-size: 14px !important;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor de iconos sociales */
.th-social a {
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 6px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 0 !important;
}

/* ============================================================================
   COLORES DE ICONOS (Opcional - mantener colores del tema)
   ============================================================================ */

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

/* ============================================================================
   ICONOS EN GALERÍA DE INSTAGRAM
   ============================================================================ */

.gallery-btn i,
.gallery-btn .bi {
    font-size: 18px !important;
}

/* ============================================================================
   RESPONSIVE - Iconos más pequeños en móvil
   ============================================================================ */

@media (max-width: 767px) {
    .th-social a i,
    .th-social a .bi {
        font-size: 12px !important;
        width: 28px;
        height: 28px;
    }

    .th-social a {
        width: 28px !important;
        height: 28px !important;
        margin-right: 5px !important;
    }
}

/* ============================================================================
   OCULTAR ICONOS FONT AWESOME QUE NO FUNCIONAN
   ============================================================================ */

.th-social a .fab {
    display: none !important;
}

/* Mostrar iconos Bootstrap Icons */
.th-social a .bi {
    display: inline-flex !important;
}

