@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Sora:wght@100..800&display=swap');

h1,h2,h3,h4,h5,h6,a,span,p,select,button,input,textarea,li,table {
    font-family: 'Open Sans';
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1em;
    font: inherit;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    text-decoration: none;
    outline: 0;
    list-style: none;
}

body {
    overflow-x: hidden;
    height: 100%;
}

html,body {
    background: #fff;
}

p,a {
    font-size: 16px;
    color: #444;
    line-height: 20px;
    margin-bottom: 10px;
}

p:last-child {
    margin-bottom: 0;
}

.whFit,.whFitImg {
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
    height: -moz-fit-content
}

.hFit,.hFitImg {
    height: fit-content;
    height: -moz-fit-content
}

.whFitImg img,.hFitImg img {
    width: 100%;
    height: 100%
}

.margin50 {
    margin-bottom: 50px
}

.margin40 {
    margin-bottom: 40px
}

.margin30 {
    margin-bottom: 30px
}

.margin20 {
    margin-bottom: 20px
}

.margin15 {
    margin-bottom: 15px
}

.margin10 {
    margin-bottom: 10px
}

.gap5 {
    gap: 5px
}

.gap10 {
    gap: 10px
}

.gap15 {
    gap: 15px
}

.gap20 {
    gap: 20px
}

.gap30 {
    gap: 30px
}

.fullW {
    width: 100%
}

.zoomEfct {
    transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s
}

.zoomEfct:hover {
    transform: scale(.95)
}

.uppercase {
    text-transform: uppercase
}

.black {
    font-weight: 900
}

.bold,strong,b {
    font-weight: 700
}

.extrabold {
    font-weight: 800
}

.italic {
    font-style: italic
}

.light {
    font-weight: 300
}

.medium {
    font-weight: 500
}

.normal {
    font-weight: 400
}

.semibold {
    font-weight: 600
}

.flex,.flex_w,.flex_c,.flex_r,.flex_e {
    display: flex
}

.flex_w {
    flex-wrap: wrap
}

.flex_r {
    justify-content: space-between
}

.flex_e {
    justify-content: space-evenly
}

.flex_c {
    flex-direction: column
}

.right {
    margin-right: 0;
    margin-left: auto
}

.left {
    margin-left: 0;
    margin-right: auto
}

.center {
    margin-left: auto;
    margin-right: auto
}

.middle {
    align-items: center
}

.t-center {
    text-align: center
}

.t-right {
    text-align: right
}

.container {
    width: 100%;
    display: flex;
    height: auto;
    padding: 120px 20px 80px;
}

.main {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    height: auto;
    display: flex
}

.btnWhats{
    color: #fff;
    width: fit-content;
    font-weight: 800;
    padding: 6px 14px 10px;
    border-radius: 10px;
    background: #5DA651;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body{
    position: relative;
}

body::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 813px;
    height: 100%;
    background: url(../img/bgCar.png) no-repeat top left;
    background-size: cover;
    z-index: 0;
}

.homeSection{
    position: relative;
    z-index: 2;
}

.btnDownload{
    margin-left: -12px;
}

.btnDownload,.btnWhats{
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.btnWhats{
    padding: 6px 14px 10px;
}

.btnWhats .whFitImg{
    padding-top: 4px;
}

.btnDownload:hover,.btnWhats:hover{
    transform: scale(0.9) rotate(1deg);
}

.localHome, .emailHome{
    width: 100%;
    max-width: 300px;
    justify-content: start;
}

.leftHome, .rightHome{
    width: 50%;
}

footer{
    position: relative;
    padding: 30px 20px 60px;
    border-top: 1px solid #E0E0E0;
    z-index: 2;
}

footer a,footer p{
    color: #BCBCBC;
}

@media screen and (max-width:1450px){
    body::after{
        width: 650px;
    }
}
@media screen and (max-width:1060px){
    body::after{
        width: 420px;
    }
}

@media screen and (max-width:700px){
    .homeSection .main{
        flex-direction: column;
        align-items: center;
    }

    body::after{
        display: none;
    }

    .leftHome, .rightHome{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}