.duvidas-info-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.duvidas-title-div {
    width: 100%;
    text-align: center;
}

.duvidas-title-div h3 {
    text-transform: uppercase;
    text-align: center;
    font: normal normal 900 54px/54px Phudu;
    letter-spacing: 0;
    color: #000;
    opacity: 1;
    margin: 50px 0 20px;
}

.kr-acc {
    border-bottom: 1px solid #000000;
}

.kr-acc__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kr-acc[open] > .kr-acc__summary {
    border-bottom: 1px solid #000000;
}

.kr-acc__summary::-webkit-details-marker { display: none; }
.kr-acc__summary::marker { content: ""; }

.kr-acc__title {
    font: normal normal 700 20px/20px Montserrat;
    letter-spacing: 0;
    color: #000000 !important;
    opacity: 1;
    padding: 25px 20px 25px 3px;
    margin: 0;
}

.kr-acc__icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
    color: #000000;
    transition: transform .2s ease;
    flex: 0 0 24px;
}

.kr-acc[open] .kr-acc__icon{
    transform: rotate(180deg);
}

.kr-acc__content {
    padding: 20px 3px;
}

.kr-acc__content p, .kr-acc__content ul li {
    font: normal normal 400 16px/24px Montserrat;
    letter-spacing: 0;
    color: #000000 !important;
    opacity: 1;
    margin-bottom: 6px;
}

@media (max-width: 860px) {
    .kr-acc {
        margin: 14px 0;
    }

    .kr-acc__title {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0;
        padding: 10px 10px 10px 3px;
    }

    .kr-acc__content p, .kr-acc__content ul li {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}