* {
    margin: 0;
    padding: 0;
    font-family: "roboto";
}

body {
    background-color: rgb(218, 219, 226);

}

.banner {
    background-image: url("/img/banner/banner-grande.jpg");
    background-size: cover;
    width: 100%;
    height: 300px;
}
.center{
    text-align: center;
}
.superBotoes {
    cursor: pointer;
    justify-items: center;
   margin-top: 30px;
   margin-bottom: 30px;
   width: 100%;
    font-size: x-large;
    border: none;
    height: 80px;
    background-color:rgb(188, 189, 194);
    text-align: center;
}
.superBotoes:hover{
    background-color: rgb(84, 131, 170);;
}
.container-pai {
    margin-left: 140px;
    width: 70%;
}

.container-cards {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    height: 200px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.titulo {
    background-color: rgb(58, 58, 58);
    color: aliceblue;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    font-size: 20px;

}

.titulo a {
    text-decoration: none;
    color: aliceblue;
}

.cards {
    background-color: rgb(188, 189, 194);
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    width: 70%;
}

.cards-foto img {
    height: 100%
}

.cards-nome {
    font-size: 30px;
    width: 100%;

}

.cards-descricao {
    font-size: 20px;
    width: 100%;
    padding: 15px;
}

.cards-comandos {
    cursor: pointer;
    width: 500px;
    padding: 15px;

}

.cards-comandos button {
    font-size: 20px;
    width: 300px;
    border: 0px;
    padding: 10px;
    background-color: rgb(117, 124, 168);
}

.cards-comandos button:hover {
    background-color: rgb(84, 131, 170);
    cursor: pointer;
}

footer {
    text-align: center;
    background-color: black;
    color: aliceblue;
}

footer a {
    text-decoration: none;
    color: aliceblue;
}

.faq {
    text-align: center;
    background-color: rgb(188, 189, 194);

}
.valores{
    font-size: larger;
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 600px) {
    .container-pai {
        margin-left: 0;
        width: 100%
    }

    .banner {
        background-image: url("/img/banner/banner-pequeno.jpg");
        width: 100%;
        height: 300px;
    }

    .container-cards {
        height: auto;
        flex-wrap: wrap;
        background-color: rgb(188, 189, 194);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .container-cards img {
        height: 200px;
    }

    .cards-comandos {
        width: 100%;
        padding: 0

    }

    .cards-descricao {
        padding: 0;
        font-size: 20px;
        width: 100%;
    }

    footer {
        width: 100%;
    }
    .cards-comandos button:hover {
        background-color: rgb(84, 131, 170);
    }
}