@import url('https://fonts.googleapis.com/css2?family=Madimi+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fixo: fixed;
    --negrito: bolder;
    --relativo: relative;
    --verde: rgb(25, 245, 25);
    --borda: .5px solid white;
    --preto1: rgba(0, 0, 0, 95%);
    --azul: rgba(0, 0, 255, 0.288);
    --madimi: "Madimi One", sans-serif;
    --montserrat: "Montserrat", sans-serif;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: var(--preto1);
    text-decoration: none;
}

#cabecalho {
    width: 100%;
    height: 100px;
    z-index: 1000;
    display: flex;
    position: var(--fixo);
    background-color: black;
    justify-content: space-between;
}

#cabecalho #imgLogo {
    top: .5rem;
    width: 200px;
    position: var(--relativo);
}

#cabecalho .nav1 {
    margin: .6rem 0 0 0;
}

#cabecalho .nav1 a {
    padding: 20px;
    color: white;
    font-weight: 700;
    transition: all .2s ease;
    position: var(--relativo);
    text-decoration: var(--nada);
}

#cabecalho .nav1 a span {
    top: 50%;
    left: 50%;
    opacity: 1;
    position: absolute;
    position: var(--relativo);
    font-family: var(--madimi);
    transition: opacity .2s ease;
    transform: translate(-50%, -50%);
}

#cabecalho .nav1 a img.iconeMenu {
    width: 30px;
    padding: 2px;
}

#cabecalho .nav3 {
    top: 2rem;
    right: 1.5rem;
    position: var(--relativo);
}

#cabecalho .nav3 [type="button"] {
    border: none;
    color: white;
    font-size: 13pt;
    border-radius: 2px;
    margin: 0 0 0 8rem;
    padding: .2rem 1rem;
    border: var(--borda);
    font-family: var(--madimi);
    font-weight: var(--negrito);
    background-color: var(--preto1);
}

#telaInicial {
    top: 6rem;
    position: var(--relativo);
}

#telaInicial .texto {
    left: 10px;
    right: 250px;
    bottom: 200px;
    text-align: left;
    position: var(--relativo);
    font-family: var(--montserrat);
}

#telaInicial .texto h5 {
    font-size: 45pt;
    font-weight: 700;
    font-family: var(--madimi) !important;
}

#telaInicial .texto p {
    width: 55%;
    font-weight: 500;
}

#telaInicial .texto p span {
    font-size: 16pt; 
    font-weight: bolder;
}

#telaConfianca {
    left: 2px;
    top: 140px;
    position: var(--relativo);
}

#telaConfianca h1 {
    font-size: 16pt;
    text-align: center;
    font-family: var(--madimi);
    font-weight: var(--negrito);
}

#telaConfianca #imgOrg {
    display: flex;
    justify-content: space-around;
}

#telaConfianca #imgOrg img {
    width: 110px;
    filter: grayscale(50%);
    transition: filter .6s ease;
}

#telaConfianca #imgOrg img:hover {
    filter: grayscale(0%);
}

#telaFunciona {
    top: 330px;
    left: 25px;
    position: var(--relativo);
}

#telaFunciona h1 {
    font-family: var(--madimi);
    font-weight: var(--negrito);
}

#telaFunciona p {
    width: 87%;
    font-weight: 500;
    font-family: var(--montserrat);
}

#telaFunciona img.imgPassos {
    width: 50px;
}

#telaFunciona div#areaPassosFuncionamento {
    display: flex;
}

#telaFunciona img.imgPassos {
    z-index: 10;
    border-radius: 7px;
    background-color: var(--azul);
    box-shadow: 0 0 4px var(--preto1);
}

#telaFunciona img.imgVisto {
    background-color: var(--verde);
}

#telaFunciona h4 {
    font-family: var(--madimi);
    font-weight: var(--negrito);
}


section#opcaoTeste {
    top: 23rem;
    position: relative;
    padding-left: 1.5rem;
}

section#opcaoTeste h1 {
    font-family: var(--madimi);
}

section#opcaoTeste p {
    font-family: var(--montserrat);
}

nav#contentorOpcoes {
    width: 100%;
    display: flex;
    padding: .5rem;
    align-items: center;
    justify-content: space-around;
}

section#opcaoTeste .divOpcoesTeste {
    border: none;
    border-radius: .2rem;
    transition: all .5s ease-in;
    box-shadow: 0 0 5px var(--preto1);
    background-color: rgba(0, 0, 0, 0.297);
}

section#opcaoTeste .divOpcoesTeste:hover {
    transform: translateX(10px);
}

section#opcaoTeste .divOpcoesTeste a {
    color:  black;
    text-decoration: none;
}

.divOpcoesTeste .opcoesTeste .h5 {
    top: 25%;
    left: 1rem;
    color: white;
    font-size: 20pt;
    position: relative;
    font-family: var(--madimi);
    text-shadow: 0 0 3px var(--preto1);
}

section#opcaoTeste .divOpcoesTeste .opcoesTesteCarro {
    background-image: url("../img/opcaoCarro.png");
    background-size: 50%;
    background-position: right;
    background-repeat: no-repeat;
    height: 150px;
    width: 300px;
}

section#opcaoTeste .divOpcoesTeste .opcoesTesteMoto {
    background-image: url("../img/opcaoMoto.png");
    background-size: 45%;
    background-position: right;
    background-repeat: no-repeat;
    height: 150px;
    width: 300px;
}

section#opcaoTeste .divOpcoesTeste .opcoesTesteCaminhao {
    background-image: url("../img/opcaoCaminhao.png");
    background-size: 53%;
    background-position: right;
    background-repeat: no-repeat;
    height: 150px;
    width: 300px;
}

section#opcaoTeste .divOpcoesTeste .opcoesTesteAutocarro {
    background-image: url("../img/opcaoAutocarro.png");
    background-size: 45%;
    background-position: right;
    background-repeat: no-repeat;
    height: 150px;
    width: 300px;
}

section#alerta {
    top: 25rem;
    height: 27rem;
    position: relative;
    padding-left: 4.5rem;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-color: var(--preto1);
    background-image: url("../img/bx1.png");
}

section#alerta h1 {
    width: 60%;
    color: white;
    font-family: var(--madimi);
}

section#alerta p {
    top: 20%;
    width: 55%;
    color: white;
    position: relative;
    text-align: justify;
    font-weight: 300;
    margin-bottom: 120px;
    font-family: var(--montserrat);
}

section#alerta nav {
    color: white;
    font-family: var(--madimi);
}

section#alerta nav img {
    width: 150px;
}