:root {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
}

.container {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
}

header {
    background-color: #171717;
    height: 80px;
    width: 100%;
    position: fixed;
    z-index: 10;
}
header nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav .logo img {
    position: relative;
    top: 20px;
}
header nav .links a {
    color: #f2bc35;
    text-decoration: none;
    margin-right: 40px;
    padding: 10px;
    transition: all .3s;
    border-radius: 5px;
}
header nav .links a:last-child {
    margin-right: 0;
}
header nav .links a:hover {
    background-color: #255948;
}
header nav .links a.active {
    background-color: #255948;
}
header nav .social {
    display: flex;
    
}

header nav .social a:first-child {
    margin-right: 20px;
}
header nav .hamburguer {
  display: none;
}
header nav .hamburguer label {
  margin: 0;
  display: block;
  padding: 10px 0;
}
header nav .hamburguer label span {
  background: #FFFFFF;
  display: block;
  height: 5px;
  position: relative;
  transition: background .2s ease-out;
  width: 32px;
}
header nav .hamburguer label span:before,
header nav .hamburguer label span:after {
  background: #FFFFFF;
  content: '';
  display: block;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
  height: 5px;
}
header nav .hamburguer label span:before {
  top: 10px;
}
header nav .hamburguer label span:after {
  top: -10px;
}
header nav .hamburguer input {
  display: none;
}
header nav .hamburguer input:checked ~ label span {
  background: transparent;
}
header nav .hamburguer input:checked ~ label span:before {
  transform: rotate(-45deg);
}
header nav .hamburguer input:checked ~ label span:after {
  transform: rotate(45deg);
}
header nav .hamburguer input:checked ~ label:not(.steps) span:before,
header nav .hamburguer input:checked ~ label:not(.steps) span:after {
  top: 0;
}

#menu-mobile {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #171717;
    z-index: 9;
}
#menu-mobile .links {
    display: flex;
    flex-direction: column;
    text-align: center;
}
#menu-mobile .links a {
    color: #FFE600;
    text-decoration: none;
    padding: 20px;
    transition: all .3s;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: 700;
}
#menu-mobile .social {
    display: flex;
    margin-top: 20px;
}
#menu-mobile .social a {
    padding: 10px;
}

#busca {
    margin-top: 20px;
}
#busca .container {
    text-align: center;
}
#busca h1 {
    color: #F3F3F3;
    text-align: center;
    font-size: 6rem;
    font-weight: 600;
    line-height: 70px;
}
#busca h2 {
    color: #868686;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: -20px;
}
#busca h3 {
    color: #323232;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 10px;
}
#busca .detalhe {
    width: 100px;
}
#busca .box {
    max-width: 1600px;
    width: 100%;
    background-color: #F4F4F4;
    border-radius: 15px;
    margin: 50px auto 75px;
}
#busca .box .campos {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 80px;
}
#busca .box .campos img {
    width: 60px;
}
#busca .box .campos select {
    width: 330px;
    height: 70px;
    border: none;
    padding-left: 30px;
    background-color: #FFFFFF;
    font-size: 1.2rem;
    margin-right: 40px;
    appearance: none;
    background-image: url("../img/seta-baixo.png");
    background-repeat: no-repeat;
    background-position: 95% center;
}
#busca .box .campos select:nth-child(3),
#busca .box .campos select:nth-child(4){
    width: 130px;
}
#busca .box .campos select:focus {
    outline: none;
}
#busca .box .campos .icone-carro {
    margin-bottom: 20px;
}
#busca .box .campos form .filtros-selects {
    margin-bottom: 40px;
}
#busca .box .campos form .filtro-range {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#busca .box .campos form .filtro-range .esquerdo {
    display: none;
}
#busca .box .campos form .filtro-range .texto,
#busca .box .campos form .filtro-range input {
    width: 520px;
}
#busca .box .campos form .filtro-range .texto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
#busca .box .campos form .filtro-range .texto h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: #515151;
}
#busca .box .campos form .filtro-range .texto h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: .9rem;
    color: #515151;
}
input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: transparent;
  border-radius: 5px;
  border: 1px solid #707070;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #FFFFFF;
  border: 1px solid #FFFFFF;
  height: 26px;
  width: 26px;
  border-radius: 15px;
  background: #EC2626;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 11px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000;
  background: transparent;
  border-radius: 1px;
  border: 0px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000031;
  border: 1px solid #00001E;
  height: 26px;
  width: 26px;
  border-radius: 15px;
  background: #FFFFFF;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 11px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0px solid #010101;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0px solid #010101;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 1px 1px 1px #000031;
  border: 1px solid #00001E;
  height: 26px;
  width: 26px;
  border-radius: 15px;
  background: #FFFFFF;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: transparent;
}
input[type=range]:focus::-ms-fill-upper {
  background: transparent;
}
#busca .box .campos form button {
    width: 320px;
    height: 75px;
    background-color: #255948;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
}

#carros {
    background-color: #255948;
    padding-bottom: 100px;
}
#carros .logo {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}
#carros .logo img {
    width: 275px;
    margin-top: -35px;
}
#carros .titulos {
    text-align: center;
    padding-bottom: 70px;
}
#carros .titulos h1 {
    color: #1a4c3c;
    text-align: center;
    font-size: 6rem;
    font-weight: 600;
    line-height: 70px;
}
#carros .titulos h2 {
    color: #FFFFFF;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: -20px;
}
#carros .titulos h3 {
    color: #FFFFFF;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 10px;
}
#carros .titulos .detalhe {
    width: 100px;
}
#carros .carros {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#carros .carros .carro {
    width: 300px;
    background-color: #FFFFFF;
    border-radius: 5px;
    margin-bottom: 75px;
    text-decoration: none;
}
#carros .carros .carro .logo {
    width: 100px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 50% 50% 0% 0%;
    position: relative;
    top: -30px;
    padding: 15px;
}
#carros .carros .carro h4 {
    color: #171717;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 20px;
    margin-top: -25px;
    margin-bottom: 30px;
}
#carros .carros .carro .icones {
    display: flex;
    align-items: center;
    padding: 0 20px;
}
#carros .carros .carro .icones img {
    width: 20px;
}
#carros .carros .carro .icones h5 {
    padding-left: 5px;
    padding-right: 15px;
    color: #242424;
    font-size: .7rem;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
}
#carros .carros .carro .valor {
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    color: #EC2626;
    font-weight: 400;
}
#carros .carros .carro .valor span {
    font-weight: 600;
}
#carros .carros .carro .divisor {
    padding: 0 50px;
}
#carros .carros .carro .botao {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #f2bc35;
    width: 150px;
    padding: 10px;
    border-radius: 5px;
}
#carros .carros .carro .botao img {
    width: 30px;
}
#carros .carros .carro .botao span {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    margin-left: 5px;
}
#carros .botao {
    display: flex;
    justify-content: center;
}
#carros .botao a {
    width: 260px;
    height: 70px;
    background-color: #FFFFFF;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #255948;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#carros .botao img {
    width: 75px
}
#marcas {
    padding: 50px 0;
}
#marcas img {
    width: 100px;
    margin: 0 auto;
}
#marcas .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center
}

footer {
    background-color: #171717;
    padding: 40px 0;
}
footer .container {
    display: flex;
    align-items: center;
}
footer .contato {
    background-color: #255948;
    width: 330px;
    padding: 30px 20px;
    border-radius: 10px;
}
footer .contato img {
    margin-bottom: 60px;
}
footer .contato p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
}
footer .contato p:last-child {
    margin-bottom: 0;
}
footer .imagem {
    width: 600px;
    padding: 0 30px;
}
footer .vendas h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.3rem;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 40px;
}
footer .vendas h2 span {
    font-weight: 700;
}
footer .vendas h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 40px;
}
footer .vendas h3 span {
    font-weight: 700;
}
footer .vendas .social {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}
footer .vendas .social img {
    width: 55px;
}
#copy {
    padding: 30px 0;
    color: #535353;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}
#copy .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#copy .direita img {
    width: 15px;
}

#carro {
    padding-top: 80px;
}
#carro .nome {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F3F3F3;
}
#carro .nome h1 {
    font-size: 2.4rem;
    color: #323232;
    font-weight: 600;
    margin-bottom: 10px;
}
#carro .nome img {
    width: 100px;
}
#carro .owl-dots {
    margin: 0;
    position: relative;
    top: -40px;
}
#carro .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
}
#carro .owl-theme .owl-dots .owl-dot span {
    background: #EC2626;
    opacity: .5;
}
#carro .owl-theme .owl-dots .owl-dot.active span {
    background: #EC2626;
    opacity: 1;
}
#carro .container {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
}
#carro .container .direita,
#carro .container .esquerda {
    width: 50%;
}
#carro h2 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 2.3rem;
    margin-bottom: 30px;
}
#carro h3 {
    background-color: #D4EDDA;
    color: #49B165;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
}
#carro .dados {
    border: 1px solid #DCDCDC;
    margin-top: 25px;
}
#carro .dados h4 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    padding: 15px 30px;
    border-bottom: 1px solid #DCDCDC;
    display: flex;
}
#carro .dados h4:last-child {
    border-bottom: 0;
}
#carro .dados h4 span {
    font-weight: 700;
    margin-left: 5px;
}
#carro .dados img {
    width: 35px;
    margin-right: 35px;
}
#carro .botao {
    width: 90%;
    height: 70px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    text-decoration: none;
    margin: 0 auto;
    border-radius: 5px;
    margin-top: 30px;
}
#carro .botao img {
    width: 50px;
    margin-right: 15px;
}
#carro .informacoes-adicionais {
    margin-top: 50px;
    margin-bottom: 30px;
}
#carro p {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #959595;
}
#carro .container .esquerda {
    padding-left: 35px;
}
#carro .container .direita {
    padding-right: 35px;
}
#carro .esquerda .atendimento-whatsapp {
    width: 100%;
    display: flex;
}
#carro .esquerda .atendimento-whatsapp img {
    width: 80%;
    margin: 0 auto;
}
#carro .esquerda form {
    margin: 30px 0;
}
#carro .esquerda form label {
    display: flex;
    flex-direction: column;
}
#carro .esquerda form label .label {
    width: 100%;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #323232;
    margin-bottom: 10px;
    cursor: pointer;
}
#carro .esquerda form label .input {
    display: flex;
    margin-bottom: 20px;
}
#carro .esquerda form label .input img {
    width: 60px;
    border: 1px solid #DCDCDC;
    padding: 10px;
    cursor: pointer;
}
#carro .esquerda form label .input input {
    width: 100%;
    border: 1px solid #DCDCDC;
    outline: none;
    padding-left: 10px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #323232;
    border-left: none;
}
#carro .esquerda form label textarea {
    width: 100%;
    border: 1px solid #DCDCDC;
    outline: none;
    padding: 20px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #323232;
}
#carro .esquerda form .botao {
    border: 0;
    cursor: pointer;
    width: 80%;
}
#carro .esquerda form .botao img {
    margin-right: 0;
    margin-left: 5px;
}
#carro .compartilhe {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    color: #323232;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
#carro .compartilhe a {
    display: flex;
}
#carro .compartilhe .face {
    width: 25px;
    margin-left: 5px;
}
#carro .compartilhe .whats {
    width: 30px;
}
#carro .compartilhe a {
    text-decoration: none;
}
#carro .container:last-child {
    text-align: left;
    display: inherit;
}
#carro ul {
    list-style-image: url("../img/item-lista.svg");
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #959595;
}

.financiamento h2 {
    margin-top: 30px;
    margin-bottom: 10px !important;
}
.financiamento .input {
    display: flex;
    flex-wrap: wrap;
}
.financiamento label {
    display: flex;
    flex-direction: column;
    width: 23%;
    margin-bottom: 10px;
    margin-right: 10px;
}
.financiamento input[type=text],
.financiamento select,
.financiamento textarea {
    padding: 10px;
    margin-top: 5px;
}
.financiamento .obs label,
.financiamento .veiculo label {
    width: 95% !important;
}
.financiamento .contato label {
    width: 35% !important;
}
.financiamento .radio {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}
.financiamento .radio label {
    display: flex;
    flex-direction: row;
    width: inherit;
    margin: 0;
    align-items: center;
}
.financiamento .radio label input {
    margin-right: 5px;
}
.financiamento form button {
    width: 20% !important;
    height: 50px !important;
    margin: inherit !important;
    margin-bottom: 50px !important;
    cursor: pointer;
}

.nossa-historia .container {
    display: flex !important;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 1000px;
}
.nossa-historia .texto,
.nossa-historia .imagem {
    width: 100%;
}
.nossa-historia .imagem {
    margin-top: 20px;
}
.nossa-historia .texto:first-child {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.nossa-historia .texto div {
    width: 30%;
}
.nossa-historia h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
}

#carros .estoque {
    justify-content: inherit !important;
}

#carros .estoque a {
    margin-right: 40px;
}

#msg-box {
    height: 70px;
    position: fixed;
    top: 0px;
    color: #333333;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    font-family: Arial, serif;
}

div.msg-success {
    background-color: #DAFFD2;
    border: 1px solid #9CE28D;
}

div.msg-error {
    background-color: #FFD2D5;
    border: 1px solid #E28D93;
}

.lb-data .lb-number {
    display: none !important;
}

#banner .owl-carousel.mobile {
    display: none;
}

@media (max-width:1400px) {
    header .container {
        max-width: 1200px;
    }
    #busca .box .campos {
        max-width: 1300px;
    }
    .container {
        padding: 0 20px;
    }
}
@media (max-width:1300px) {
    :root {
        font-size: 13px;
    }
    #busca .box .campos {
        max-width: 1100px;
    }
    #carros .carros .carro {
        width: 48%;
    }
}
@media (max-width:1100px) {
    #busca .box .campos {
        padding: 20px;
    }
    #busca .box .campos select {
        width: 49% !important;
        margin: 0;
        margin-bottom: 20px;
    }
    #busca .box .campos form .filtros-selects {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
@media (max-width:1000px) {
    header nav .hamburguer {
        display: block;
    }
    header nav .links,
    header nav .social {
        display: none;
    }
    footer .vendas {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    footer .imagem {
        width: 70%;
    }
    footer .contato {
        width: 30%;
    }
    footer .container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    footer .vendas .social {
        padding-left: 0px;
    }
    footer .vendas h2,
    footer .vendas h3,
    footer .vendas .social {
        margin-right: 50px;
        margin-bottom: 0;
        margin-top: 20px;
    }
    footer .vendas .social {
        margin-right: 0px;
    }
}
@media (max-width:768px) {
    :root {
        font-size: 12px;
    }
    #busca .box .campos form .filtro-range {
        flex-direction: column;
    }
    #busca .box .campos form .filtros-selects {
        margin-bottom: 0px;
    }
    #carro ul {
        margin-left: 20px;
    }
    .financiamento label {
        width: 100%;
        margin-right: 0;
    }
    .financiamento .obs label,
    .financiamento .veiculo label {
        width: 100% !important;
    }
    .financiamento .contato label {
        width: 100% !important;
    }
    #banner .owl-carousel.mobile {
        display: block;
    }
    #banner .owl-carousel {
        display: none;
    }
    .nossa-historia .texto div {
        width: 100%;
    }
}
@media (max-width:576px) {
    #busca .box .campos form .filtro-range .texto, #busca .box .campos form .filtro-range input {
        width: 350px;
    }
    #busca .box .campos select {
        width: 100% !important;
    }
    #carros .carros .carro {
        width: 100%;
        margin-bottom: 20px;
    }
    footer .contato {
        width: 100%;
    }
    footer .imagem {
        display: none;
    }
    footer .vendas {
        flex-direction: column;
    }
    footer .vendas .social {
        flex-direction: row;
    }
    #carro .nome h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    #carro .container .direita, #carro .container .esquerda {
        width: 100%;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    #carro h2 {
        margin-top: 30px;
    }
    #copy .container {
        justify-content: center;
        flex-direction: column;
    }
    #copy .direita {
        margin-top: 10px;
    }
}