.main_faq {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_faq_titulo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    padding: 30px;
    margin-top: 28px;
}

.logo_multipla {
    width: 100px;
    height: 102px;
}

.faq_container {
    box-sizing: border-box;
    width: 93%;
    max-width: 1080px;
    margin: 0 auto;
}

.faq {
    background-color: white;
    box-shadow: 6px 2px 6px rgb(0, 0, 0, 0.16),
    0px 3px 6px rgb(0, 0, 0, 0.3);
    border-radius: 12px;
    margin: 25px 0;
    padding: 33px;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
}

.faq:hover {
    background-color: #f5f5f5;
}

.faq.active {
    background-color: #f5f5f5;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.1), 
    0px 2px 6px rgb(0, 0, 0, 0.3);
}

.faq_question {
    margin: 0 35px 0 0;
    font-weight: 470;
    font-size: 1.37rem;
    cursor: pointer;
}

.faq_answer {
    display: none;
    margin: 33px 0 0;
    font-size: 1.13rem;
    line-height: 1.5;
}

.faq.active .faq_answer {
    display: block;
}

.faq_toggle_button {
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
}

.faq_toggle_button:focus {
    outline: 0;
}

.faq_toggle_button .fa-times {
    display: none;
}

.faq.active .faq_toggle_button .fa-times {
    color: rgb(255, 204, 0);
    display: block;
}

.fa-chevron-down {
    color: rgb(255, 204, 0);
}

.faq.active .faq_toggle_button .fa-chevron-down {
    display: none;
}

.faq.active .faq_toggle_button {
    background-color: black;
}

@media(max-width: 510px) {
    .logo_multipla {
        width: 60px;
        height: 61px;
    }
}

@media(max-width: 992px) {
    .faq_container {
        width: 80%;
    }
}

@media(min-width: 1180px) {
    .faq_container {
        width: 100%;
    }
}
