/* =========================================
   MENÚ SOCIAL: BLUE LIQUID GLASS (iOS 26)
   ========================================= */

/* Contenedor principal */
.social-float-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Anclado a la derecha */
    gap: 6px;
}

/* El botón con efecto Vidrio Azul */
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    
    /* FONDO: Azul institucional traslúcido */
    background: rgba(0, 17, 79, 0.75); 
    
    /* EFECTO CRISTAL: Desenfoque de lo que hay atrás */
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    
    /* BORDES: Curva suave iOS */
    border-radius: 10px 0 0 10px;
    
    /* BRILLO DEL VIDRIO: Borde blanco muy fino */
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-right: none;
    
    color: #ffffff;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    
    /* SOMBRA: Profundidad líquida */
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(255, 255, 255, 0.1);
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: right;
}

/* REFLEJO SUPERIOR: La "gota" de vidrio */
.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

/* Icono con brillo */
.social-icon i {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    z-index: 2;
}

/* --- HOVER MATÓN --- */

.social-icon:hover {
    width: 85px;
    background: rgba(0, 17, 79, 0.9); /* Se vuelve un azul más profundo */
    transform: scale(1.05); /* Pulsa ligeramente */
    padding-right: 15px;
}

/* Resplandor de color según la red social */
.social-icon.facebook:hover { box-shadow: -5px 5px 25px rgba(24, 119, 242, 0.5); }
.social-icon.instagram:hover { box-shadow: -5px 5px 25px rgba(214, 36, 159, 0.5); }
.social-icon.tiktok:hover { box-shadow: -5px 5px 25px rgba(255, 255, 255, 0.3); }
.social-icon.youtube:hover { box-shadow: -5px 5px 25px rgba(255, 0, 0, 0.5); }
.social-icon.whatsapp:hover { box-shadow: -5px 5px 25px rgba(37, 211, 102, 0.5); }

/* Destello que cruza al pasar el mouse */
.social-icon::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transition: 0.6s;
    z-index: 1;
}

.social-icon:hover::after {
    top: -50%;
    left: -50%;
}