/* Social Share Buttons - Estilos */

.ssb-share-buttons {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ssb-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.ssb-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ssb-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ssb-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #fff;
}

.ssb-button:active {
    transform: translateY(0);
}

.ssb-button svg {
    width: 20px;
    height: 20px;
}

/* Cores dos botões */
.ssb-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.ssb-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #0E7A6D 100%);
}

.ssb-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.ssb-facebook:hover {
    background: linear-gradient(135deg, #166FE5 0%, #0A58BE 100%);
}

.ssb-instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.ssb-instagram:hover {
    background: linear-gradient(135deg, #D63A56 0%, #B32E78 50%, #7531A3 100%);
}

/* Responsividade */
@media (max-width: 768px) {
    .ssb-share-buttons {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .ssb-buttons-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .ssb-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .ssb-button span {
        font-size: 14px;
    }
    
    .ssb-title {
        font-size: 14px;
    }
}

/* Ajustes para tema escuro (caso o tema suporte) */
@media (prefers-color-scheme: dark) {
    .ssb-share-buttons {
        background: #1a1a1a;
        border: 1px solid #333;
    }
    
    .ssb-title {
        color: #e0e0e0;
    }
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ssb-share-buttons {
    animation: fadeInUp 0.6s ease;
}
