/* ========================================
   SUPPORT - Estilos da Seção de Suporte
   ======================================== */

.support-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(10, 10, 10, 0.9));
    margin-top: 2rem;
    position: relative;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.support-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
}

.support-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-70);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.support-button {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp));
}

.support-button i {
    font-size: 1.2rem;
}

/* Responsividade Support */
@media (max-width: 768px) {
    .support-section {
        padding: 3rem 0;
    }
    
    .support-title {
        font-size: 1.8rem;
    }
    
    .support-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .support-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 1.6rem;
    }
    
    .support-description {
        font-size: 0.9rem;
    }
    
    .support-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
