/* Botón de compartir flotante */
.share-floating-container {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.share-main-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.share-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.share-main-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.share-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.share-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.share-options.active .share-option {
    transform: scale(1);
}

.share-option:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.share-option svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Colores específicos para cada red social */
.share-facebook {
    background: #1877F2;
}

.share-whatsapp {
    background: #25D366;
}

.share-telegram {
    background: #0088CC;
}

/* Animación de entrada escalonada */
.share-options.active .share-option:nth-child(1) {
    transition-delay: 0.1s;
}

.share-options.active .share-option:nth-child(2) {
    transition-delay: 0.2s;
}

.share-options.active .share-option:nth-child(3) {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .share-floating-container {
        right: 15px;
        bottom: 20px;
    }
    
    .share-main-btn {
        width: 55px;
        height: 55px;
    }
    
    .share-option {
        width: 45px;
        height: 45px;
    }
}
