.faq {
    padding: 100px 5%;
    background-color: var(--bg-creme);
}

.faq .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background-color: var(--white);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajuste conforme o conteúdo */
    padding-bottom: 30px;
}

.answer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.btn-schedule {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}