*{
    margin: 0;
    padding: 0;
    font-family: "roboto";
    list-style-type: none;
    text-decoration: none;
    
}

h1{
    font-size: xx-large;
}
h2{
    font-size: larger;
}
button{
    font-size: x-large;
    margin: 30px;
    height: 80px;
    width: 300px;
    border: 0;
}
button:hover{
background-color: #dbabab
}
.banner{
    background-image: url("/img/banner/banner-grande.jpg");
    background-size: cover;
    width: 100%;
    height: 300px;
}
.letreiro{
    text-align: center;
    font-size: larger;
    padding: 25px;
}
.perguntas{
    padding: 25px;
    text-align: justify;
    
}
.preto{
    background-color: #dbabab
}
.branco{
    background-color:rgb(228, 228, 228)
}
.consultoria{
    padding: 25px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center; /* Alinha verticalmente */
}
footer{
    background-color: black;
    color: white;
    padding-bottom: 0;
    text-align: center;

}
footer a{
    color: white;

}
@media (max-width: 600px) {


    h1{
        font-size: x-large;
    }
    h2{
        font-size: larger;
    }
    .banner{
        background-image: url("/img/banner/banner-pequeno.jpg");
        background-size: cover;
        width: 100%;
        height: 300px;
    }
    .consultoria{
        flex-wrap: wrap;
    }
    .consultoria img{
        width: 100%;
    }
    button{
        font-size: x-large;
        height: 80px;
        width: 250px;
        border: 0;
    }


}
