#titulo{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 4rem;
    margin-top: 120px;
    padding: 0 100px;
    width: fit-content;
    color: #000000;
}
#titulo::before{
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    top: 100%;
    left: 0;
    background-image: linear-gradient(93.22deg, #C90054 10.92%, #FFB800 89.53%);
}

#duvidas{
    padding: 5% 0;
}

.tema{
    margin-bottom: 200px;
    background: rgba(232, 232, 232, 0.5);
    backdrop-filter: blur(13px);
    padding: 75px;
    border-radius: 50px;
    width: 70%;
}
.tema.left{
    left: -50px;
}
.tema.right{
    right: -50px;
    margin-left: auto;
}

.tema h1{
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
}

.topico{
    margin-bottom: 40px;
}
.topico h1{
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
    #titulo{
        font-size: 2rem;
        margin-bottom: 60px;
        padding-right: 0;
    }
    .tema{
        margin: auto 0;
        margin-bottom: 40px;
        width: 100%;
    }
}