h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;      
}

p, a, li, ol, ul{
    font-family: 'Roboto', sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 25px;
}

.header__logo {
    width: 100px;
}

.header__menu {
    display: none;
}

.revolucione {
    background-color: #F7F7F2;

    padding: 20px;
    text-align: center;
}

.revolucione__title {
    font-weight: 500;
    color: #3d443c;
}

.revolucione__btn {
    display: block;

    text-decoration: none;
    color: inherit;
    
    color: white;
    padding: 10px 45px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.revolucione__btn-1 {
    background-color: #222725;
}

.revolucione__btn-2 {
    background-color: #121113;
}

.comece {
    background-color: #899878;
    text-align: center;

    padding: 50px 20px;
}

.comece__title {
    font-weight: 500;
}

.comece__descricao {
    line-height: 1.5;
}

.comece__btn {
    display: block;
    background-color: #121113;

    text-decoration: none;
    color: inherit;
    
    color: white;
    padding: 10px 45px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.exemplo {
    text-align: center;
    padding: 20px;
}

.exemplo__img {
    width: 200px;
}

.exemplo__title {
    font-weight: 500;
    color: #3d443c;
}

.planos {
    background-color: #899878;
    padding: 20px;
}

.planos__card {
    position: relative;
    background-color: #7C8C6B;
    padding: 30px;
    margin-bottom: 20px;

    border-radius: 30px;
}

.planos__tipo {
    color: white;
    font-weight: 400;
    font-size: 14px;
}

.planos__implementacao, .planos__mensalidade {
    font-weight: 600;
    font-size: 18px;
}

.planos__implementacao span, .planos__mensalidade span {
    font-size: 12px;
}

.planos__beneficios {
    color: white;
    list-style-type: none;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
}

.planos__beneficios li {
    margin-bottom: 10px;
}

.planos__beneficios li i {
    margin-right: 8px;
}

.planos__icon {
    position: absolute;
    top: -5px;
    right: -5px;
    color: #9A4E1C;
    font-size: 30px;
}

.planos__btn {
    display: block;
    background-color: #121113;
    
    text-align: center;
    text-decoration: none;
    color: inherit;
    
    color: white;
    padding: 10px 45px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.elegancia {
    text-align: center;
    padding: 20px;
}

.elegancia__title {
    font-weight: 400;
    color: #3d443c;
}

.elegancia__title span {
    font-weight: 700;
}

.elegancia__img {
    width: 200px;
    transform: rotate(2deg);
}

.perguntas {
    padding: 20px;
    background-color: #899878;
}

.perguntas__title {
    color: #222725;
}

.perguntas__pergunta {
    color: #222725;
    font-size: 18px;
}

.perguntas__resposta {
    line-height: 1.5;
    color: white;
}

footer {
    background-color: #899878;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

@media screen and (min-width: 700px){
    
    .revolucione__btn {
        display: inline-block;
    }

    .exemplo {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .elegancia {
        display: flex;
        align-items: center;
    }

    .perguntas__conteiner {
        display: flex;
        justify-content: space-between;
    }

    .perguntas__conteiner div {
        width: 45%;
    }
    
}

@media screen and (min-width: 1000px){
    
   .header__menu__mobile {
        display: none;
   }

   .header__menu {
        display: block;
   }

   .header__menu ul {
        padding-left: 0;
        list-style-type: none;
   }

   .header__menu ul li {
        display: inline-block;
        color: #3d443c;
        font-weight: 500;
        margin-right: 20px;
   }

   .revolucione {
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
   }

   .comece__conteiner {
        width: 900px;
        margin: auto;
   }

   .comece__title {
        font-size: 28px;
   }

   .comece__descricao {
        font-size: 20px;
   }

   .exemplo {
        width: 900px;
        margin: auto;
   }
   
    .planos {
        display: flex;
        justify-content: center;
        gap: 20px
    }

    .planos__card {
        width: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .elegancia {
        width: 900px;
        margin: auto;
        gap: 40px;
    }

    .perguntas__aux {
        width: 900px;
        margin: auto;
    }


}