/**
 * BOTÕES DE COMPARTILHAMENTO SOCIAL
 * CSS Global para botões de compartilhamento em redes sociais
 * Garante tamanhos iguais e design consistente
 */

/* Container de compartilhamento */
.share-buttons-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.share-buttons-container h3 {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Wrapper dos botões */
.share-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
}

/* Botão base de compartilhamento */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 170px;
    width: 170px;
    height: 48px;
    box-sizing: border-box;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

.share-btn:active {
    transform: translateY(-1px);
}

.share-btn i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Facebook */
.share-btn-facebook {
    background: #1877F2;
    color: #ffffff !important;
}

.share-btn-facebook:hover {
    background: #0d65d9;
    color: #ffffff !important;
}

/* Twitter */
.share-btn-twitter {
    background: #1DA1F2;
    color: #ffffff !important;
}

.share-btn-twitter:hover {
    background: #0c8bd9;
    color: #ffffff !important;
}

/* WhatsApp */
.share-btn-whatsapp {
    background: #25D366;
    color: #ffffff !important;
}

.share-btn-whatsapp:hover {
    background: #1fb855;
    color: #ffffff !important;
}

/* LinkedIn */
.share-btn-linkedin {
    background: #0A66C2;
    color: #ffffff !important;
}

.share-btn-linkedin:hover {
    background: #004182;
    color: #ffffff !important;
}

/* Telegram */
.share-btn-telegram {
    background: #0088cc;
    color: #ffffff !important;
}

.share-btn-telegram:hover {
    background: #006699;
    color: #ffffff !important;
}

/* Email */
.share-btn-email {
    background: #6c757d;
    color: #ffffff !important;
}

.share-btn-email:hover {
    background: #5a6268;
    color: #ffffff !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .share-buttons-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .share-btn {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .share-buttons-container {
        padding: 1.5rem 1rem;
    }
    
    .share-buttons-container h3 {
        font-size: 1.25rem;
    }
}

/* Variante compacta */
.share-buttons-compact .share-btn {
    min-width: 140px;
    width: 140px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    height: 40px;
}

/* Variante grande */
.share-buttons-large .share-btn {
    min-width: 200px;
    width: 200px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    height: 56px;
}
