.doubts {
    background-color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
}


.doubts .title {
    text-align: center;
    font-size: 22px;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom:20px;
    font-weight: 500;

}

.doubts .linha {
    width:150px;
    height: 5px;
    background-color:#CC092F;
    align-self: center;
    margin-bottom: 30px;

}

.doubts .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.doubts .faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 30px 0px;
    border-radius: 5px;
}

.doubts .faq-question {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#47484C;
    font-weight: 500;
    font-size: 16px;
}

.doubts .arrow {
    width: 20px; /* Ajuste conforme o tamanho da imagem */
    height: 20px; /* Ajuste conforme o tamanho da imagem */
    transition: transform 0.3s ease-in-out;
    user-select: none;
}

.doubts .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    color: #6D6E71;
    font-size: 14px;
}

.doubts .faq-answer.active {
    max-height: 500px; /* Ajuste conforme necessário */
    padding: 20px 0;
    margin-top: 10px;
}
