.social-buttons {
    position: fixed;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Colores específicos para cada red social */
.facebook-button {
    background-color: #1877f2 !important;
}

.instagram-button {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
}

.whatsapp-button {
    background-color: #25d366 !important;
}

.social-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 999;
}

#backToTop:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* ModoClaro */
[data-theme="light"] .social-button {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

[data-theme="light"] .social-button:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

[data-theme="light"] #backToTop {
    background-color: #C41E3A;
}