/* Barra de Redes Sociales Flotante */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900; /* Debajo del menú móvil pero encima del contenido */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alineado a la derecha */
    background: white;
    padding: 10px 15px 10px 20px;
    border-radius: 30px 0 0 30px; /* Redondo solo a la izquierda */
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    width: 60px; /* Ancho inicial (solo icono) */
    overflow: hidden;
    white-space: nowrap;
}

.social-item:hover {
    width: 160px; /* Se expande al pasar el mouse */
    transform: translateX(-5px);
}

.social-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
}

.social-text {
    margin-right: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.social-item:hover .social-text {
    opacity: 1;
    transform: translateX(0);
}

/* En móvil se ven más pequeños o abajo */
@media (max-width: 768px) {
    .social-sidebar {
        top: auto;
        bottom: 20px;
        right: 20px;
        flex-direction: column-reverse; /* Crecen hacia arriba */
    }
    .social-item {
        width: 50px;
        padding: 12px;
        border-radius: 50%; /* Circulares en móvil */
        justify-content: center;
    }
    .social-item:hover { width: 50px; transform: scale(1.1); }
    .social-text { display: none; } /* Sin texto en móvil */
}