/* Botones flotantes */
.share-buttons-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.9);
    padding: 15px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 235, 59, 0.3);
}

.share-title {
    color: white;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #0088cc; }

.share-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Sección inline */
.share-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.share-buttons-inline {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-share {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-share.facebook { background: #1877f2; }
.btn-share.twitter { background: #1da1f2; }
.btn-share.whatsapp { background: #25d366; }
.btn-share.telegram { background: #0088cc; }

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .share-buttons-float {
        right: 10px;
        padding: 10px 5px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-share {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}