/* FAQ Section Styles */
.faq {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f7460; /* Cor principal do Slimjaro */
}

.faq-list {
    border-top: 1px solid #ddd;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f7460;
    transition: transform 0.3s ease-in-out;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 10px;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Valor grande o suficiente para o conteúdo */
    padding: 15px 10px 20px 10px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg); /* Transforma o '+' em 'x' */
}
