@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

:root {
    --font-legibilidade: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    background-image: linear-gradient(#000, #111, #000);
    color: #FFF;
}
.main {
    width: 100%;
    max-width: 1150px;
    margin: auto;
}

header {
    display: flex;
    align-items: center;
    height: 200px;
    background-color: #222;
}
header .menu-icon {
    display: none;
    position: absolute;
    left: 20px;
}
header .menu-icon:hover {
    cursor: pointer;
}
header .ham {
    width: 40px;
    height: 6px;
    background-color: #FFF;
    border-radius: 3px;
    margin-bottom: 4px;
}
header .logo {
    width: 200px;
    margin: 0 100px;
}
header .logo img {
    width: 100%;
}
nav {
    flex: 1;
}
nav ul {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: flex-end;    
}
nav li {
    margin: 0 30px;
}
nav a {
    color: #fff;
    text-decoration: none;
    color: #f9f719;
    text-decoration: underline;
    font-family: var(--font-legibilidade);
}
a:hover {
    color: #FFF;
}
#next, #back {
    display: none;
}
#next, #back:hover {
    cursor: pointer;
}
.seta {
    max-width: 60px;
    z-index: 1;
    max-height: 100%;
    display: flex;
    align-items: center;
}
.seta img {
    width: 100%;
}


.menu-none {
    display: none;
}
.menu-none img {
    width: 5%;
    display: flex;
}
.menu-none img:hover {
    cursor: pointer;
}
.menu-none ul {
    border-radius: 10px;
    list-style: none;
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #FFF;
    padding: 30px;
    z-index: 2;
}
.menu-none li {
    margin: 10px 50px;
}
.menu-none a {
    color: #000;
    text-decoration: none;
    font-family: var(--font-legibilidade);
}
.menu-none a:hover {
    text-decoration: underline;
}



.container {
    display: flex;
    margin: 160px 0;
}
.content-area {
    flex: 1;
}
.tablet {
    display: flex;
}
.caixa {
    justify-content: center;
    border: 2px solid #F9F719;
    display: flex;
}
legend {
    display: flex;
    text-align: center;
    font-family: var(--font-legibilidade);
    font-weight: 800;
    font-size: 18pt;
}
.caixa .servico {
    max-width: 200px;
    text-align: center;
    margin: 10px 30px;
    font-family: var(--font-legibilidade);
}
.servico img {
    max-width: 100px;
}
.titulo {
    font-family: var(--font-legibilidade);
}


.container2 {
    display: flex;
    margin-top: 50px;
}
.content-area2 {
    display: flex;
    flex: 1;
}
.nome {
    max-width: 200px;
    font-size: 24pt;
    font-family: var(--font-legibilidade);
}
.nome img {
    width: 50%;
    margin: 0 70px;
}
.ctd {
    margin: 140px 100px;
}
.ctd button {
    background-color: #f9f719;
    border: 0;
    width: 650px;
    height: 60px;
    border-radius: 25px;
    font-size: 28pt;
    font-family: var(--font-legibilidade);
    font-weight: 600;
}
.servico1 {
    max-width: 730px;
    margin: 100px 10px;
}
.servico1 img {
    width: 100%;   
}

.servico2 {
    display: flex;
    align-items: center;
    margin: 0px 100px;
    max-width: 260px ;
    text-align: center;
    font-family: var(--font-legibilidade);
    font-weight: 600;
}
.garantia {
    max-width: 250px;
    display: flex;
    margin: auto;
}
.garantia img {
    width: 100%;
}
.duvida {
    text-align: center;
    font-size: 18pt;
    font-family: var(--font-legibilidade);
    font-weight: 800;
}

.servico3 {
    max-width: 300px;
    margin-right: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.servico3 img {
    width: 10%;
}
.botao1 {
    width: 60% !important;
    margin: 10px 0px;
    height: auto;
}
.botao1:hover {
    cursor: pointer;
    background-color: #AAA;
    border-radius: 10px;
}
footer {
    text-align: center;
    background-color: #222;
    padding: 30px;
}
.footer {
    font-family: var(--font-legibilidade);
    background-color: #222;
}
.copy {
    font-style: italic;
    background-color: #222;
    margin-top: 50px ;
}
.botao:hover {
    cursor: pointer;
    border: 2px solid #FFBB00;
}

#footerzin {
    background-color: #222;
}

@media (max-width: 1200px) {
    
    .tablet {
        flex-direction: column;
    }
    .caixa {
        margin: auto;
        max-width: 80%;
    }
    .nome {
        display: none;
    }
    .ctd {
        margin: 100px auto;
        width: 80%;
    }
    .container4 {
        display: flex;
    }
    .ctd button{
        width: 100%;
        font-size: 20pt;
    }
    .servico1 {
        margin: 30px 10px;
    }
    #footerzin {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .servico3 {
        margin: auto;
    }
}

@media (max-width: 950px) {
    header .logo {
        margin: auto;
    }
    .caixa .servico {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .servico img {
        display: none;
    }
    header .menu-icon {
        display: block;
    }
    nav {
        display: none;
    }
    .servico2 {
        width: 200px;
        margin: auto;
    }
    .ctd button {
        font-size: 10pt;
    }
}
@media (max-width: 470px) {
    .caixa #serv2, #serv3, #serv4 {
        display: none;
    }
    .content-area {
        margin: auto;
    }
    header .logo {
        max-width: 120px;
    }
    header .ham {
        width: 20px;
        height: 3px;
        border-radius: 5px;
    }
    .container2 {
        display: flex;
    }
    .content-area2 {
        flex-direction: column;
    }
    footer {
        margin:0;
    }
    #next, #back {
        display: flex;
    }
    .servico3 {
        margin: auto;
    }
}