.sidebar-buttons {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

		/*boton 2*/
		 .sidebar-tik {
            position: fixed;
            right: 0;
            top: 70%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }
		
        .btn-social {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 64px;
            height: 54px;
            text-decoration: none;
            transition: width 0.3s ease;
            overflow: hidden;
            border-radius: 27px 0 0 27px;
            white-space: nowrap;
        }

        .btn-social:hover {
            width: 117px;
        }

        .btn-social img {
            width: 30px;
            height: 30px;
            margin: 0 17px; /* Centra la imagen en el estado inicial de 64px */
            flex-shrink: 0;
        }

        .btn-social span {
            color: white;
            font-family: Arial, sans-serif;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .btn-social:hover span {
            opacity: 1;
        }

        /* Colores específicos */
        .facebook { background-color: #3B5998; }
        .tiktok { background-color: #FE2C55; }