/* ========== Estilos para Botones de Compartir en Redes Sociales ========== */

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.share-whatsapp:hover {
    background: #128C7E;
}

.share-facebook {
    background: #1877F2;
}

.share-facebook:hover {
    background: #145DBF;
}

.share-twitter {
    background: #1DA1F2;
}

.share-twitter:hover {
    background: #0C85D0;
}

.share-linkedin {
    background: #0A66C2;
}

.share-linkedin:hover {
    background: #004182;
}

.share-copy {
    background: #6C757D;
}

.share-copy:hover {
    background: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
