.bannerSection {
    background-color: #1e1e1e;
    height: 55vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    text-align: center;
    align-content: center;

}

.bannerSection h1 {
    padding-top: 5%;
    text-transform: uppercase;
    font-size: 4rem;
    color: var(--branco);
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    pointer-events: none;
}

.textPage {
    display: flex;
    margin: 2% 11% 2% 11%;
    border-radius: 12px;
    padding: 1%;
}

.textPage p {
    margin-right: 1%;
    width: 100%;
    font-weight: 400;
    text-align: justify;
    color: var(--cinzaEscuro);
    font-size: 20px;
}

.classificChales {
    margin: 0% 11% 2% 11%;
}

.classificChales h2 {
    border-left: solid 5px var(--verdeAzul);
    padding-left: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
    color: var(--verdeAzul);
}

.itens {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.blocoChale {
    margin: 1% 11% 1% 11%;
    background-color: var(--verdeAzul);
    border-radius: 12px;
}

.blocoChale img {
    margin: 1.8%;
    width: 17%;
    border-radius: 12px;
}

.textChales {
    padding: 3% 0;
    color: var(--branco);
}


.textChales h3 {
    margin-top: 2%;
    font-weight: 300;
}

.textChales button {
    margin-top: 2%;
    background-color: var(--branco);
    border: none;
    padding: 1% 4%;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--verdeAzul);
    text-transform: uppercase;
    border-radius: 8px;
}

.textChales button:hover {
    background-color: var(--verdeClaro);
    transition: 0.4s;
    color: var(--branco);
}

@media screen and (max-width: 908px) {

    .bannerSection {
        background-color: #1e1e1e;
        height: 70vh;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        text-align: center;
        align-content: center;
    }
    
    .bannerSection h1 {
        padding-top: 20%;
        text-transform: uppercase;
        font-size: 3rem;
        margin-left: 10%;
        margin-right: 10%;
        color: var(--branco);
        display: flex;
        text-align: center;
        justify-content: center;
        align-content: center;
    }
    
    .textPage {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .textPage p {
        margin-right: 0%;
        width: 100%;
        font-weight: 400;
        text-align: justify;
        color: var(--cinzaEscuro);
        font-size: 20px;
    }
    
    .classificChales {
        margin: 5%;
    }
    
    .classificChales h2 {
        border-left: solid 5px var(--verdeAzul);
        padding-left: 1%;
        padding-top: 1%;
        padding-bottom: 1%;
        color: var(--verdeAzul);
        font-size: 1.3rem;
    }
    
    .itens {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    
    .blocoChale {
        margin: 5%;
        background-color: var(--verdeAzul);
        border-radius: 12px;
    }
    
    .blocoChale img {
        margin: 5%;
        width: 90%;
        border-radius: 12px;
    }
    
    .textChales {
        margin-left: 4%;
        padding: 3% 0;
        color: var(--branco);
        display: flex;
        flex-direction: column;
    }
    
    
    .textChales h3 {
        margin-top: 2%;
        width: 80%;
    }
    
    .textChales button {
        margin-top: 5%;
        margin-bottom: 3%;
        background-color: var(--branco);
        border: none;
        padding: 3% 5%;
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        color: var(--verdeAzul);
        text-transform: uppercase;
        border-radius: 8px;
        width: 95%;
    }
    
    .textChales button:hover {
        background-color: var(--verdeClaro);
        transition: 0.4s;
        color: var(--branco);
    }
}