.section9 {
    margin-top: 50px;
    width: 100%;
}

.s9-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s9-content h3 {
    font-family: "Ton Condensed", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 10px;
}

.s9-content h1 {
    font-family: "TonCondensed-Bold", Sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.s9-content p {
    font-family: "Ton Condensed", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
}

.expandables {
    width: 100%;
}

.options {
    width: 100%;
    padding: 5px 15px 0 15px;
    overflow: hidden;
    transition: all .2s;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.pergunta {
    span {
        font-family: "TonCondensed-Bold", Sans-serif;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 0.7px;
    }
}
.resposta {
    margin: 15px;
    margin-top: 15px;
    height: auto;
    overflow: hidden;
    max-height: 0;
}

.resposta ul,
.resposta p {
    font-family: "TonCondensed-light", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #000;
    margin: 15px 0;
}

.resposta ul {
    padding-left: 70px;
}

.selected {
    color: var(--color-four);

}

.selected .resposta {
    height: auto;
    max-height: 500px;
    transition: max-height .7s;
}


/* Media Queries */

/* Tablets */
@media (max-width: 1023px) {
    .section9 {
        margin-top: 0px;
    }


    .content h3 {
        font-size: 16px;
        letter-spacing: 7px;
    }

    .content h1 {
        font-size: 35px;
    }

    .content p {
        font-size: 12px;
        margin-bottom: 20px;
    }


    .options {
        padding: 7px;
    }

    .pergunta span {
        font-size: 16px;

    }

    .resposta {
        margin: 10px;
    }

    .resposta ul,
    .resposta p {
        font-size: 15px;
        margin: 10px 0;
    }

    .resposta ul {
        padding-left: 50px;
    }

}

/* Celulares */
@media (max-width: 777px) {
    .section9 {
        margin-top: 50px;
        padding: 0 60px;
    }

    .content {
        width: 320px;
    }

    .content h3 {
        font-size: 18px;
        letter-spacing: 7px;
    }

    .content h1 {
        font-size: 30px;
    }

    .content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .options {
        padding: 12px;
    }

    .selected .options {
        padding: 7px 0;
    }

    .pergunta span {
        font-size: 22px;
        font-weight: 1000;

    }
    .resposta {
        margin: 0;
    }

    .selected .resposta {
        margin: 10px;
    }

    .respost aul,
    .resposta p {
        font-size: 19px;
        margin: 10px 0;
    }

    .resposta ul {
        padding-left: 50px;
    }
}