.simulador{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}
 
.simulador h1{
    margin-top: 50px;
    font-size: var(--f-size-xx);
    color: var(--amarelo-sollar);
}

.simulador p{
    font-size: var(--f-size-gg);
    color: var(--cinza-medio-sollar);
}

.tipo-selecionado {
    color: var(--amarelo-sollar);
    background-color: var(--branco-sollar) !important;
    transition: 0.3s;
}

.btn-simulador{
    margin-top: 22px;
    width: 300px;
}

/* TIPO PROJETO */
.box-projetos{
    width: 100%;
    display: flex;
    justify-content: center;
}

.box-projetos ul{
    width: 800px;
    display: flex;
    justify-content: space-evenly;
}

.tipo-projeto{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 170px;
    height: 155px;

    box-shadow: 0 0 5px rgba(90, 90, 90, 0.3);
    border-radius: 36px;

    padding-top: 15px;
    cursor: pointer;
}

.tipo-projeto i{
    font-size: 100px;
}

.tipo-projeto b{
    font-weight: 700;
    font-size: var(--f-size-gg);
}

@media only screen and (max-width: 480px) {
    
    .simulador h1{
        font-size: var(--f-size-x);
    }

    .simulador p{
        font-size: var(--f-size-g);
    }

    .box-projetos ul{
        width: 260px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .tipo-projeto{
        width: 120px;
        height: 100px;
        border-radius: 16px;
    }
    
    .tipo-projeto i{
        font-size: 60px;
    }
    
    .tipo-projeto b{
        font-size: var(--f-size-g);
    }    

    .btn-simulador{
        margin-top: 60px;
        width: 200px;
    }
}