/**
*** SHARED
**/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

h1, h2, h3, h4, h5, h6, p, ul, span{
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

h2, h3, h4, h5 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

p, span, label {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}

b, strong {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop {
        display: none !important;
    }
    .mobile {
        display: block;
    }
}

:root {
   --primary-color: #290a54; 
   --secondary-color: #ffee34;
   --third-color: #4479eb;
   --gray: #444444;
   --div-margin-mobile: 2%;
   --div-margin: 10%;
   --separation: 5%;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.svg-topo {
    margin-left: 5px;
    margin-right: 5px;
    fill: #00dbca;
}

header {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    padding: 20px 0 0 0;
    flex-direction: column;
    gap: 20px;
}

header div:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}   

header div span.principal {
    display: flex;
    flex-direction: row;
    font-weight: 600;
    color: #7a848d;
    width: 100%;justify-content: center;
    margin-top: 2.5%;
}

header div span.principal span{
    width: 50%;
    display: flex;
    justify-content: center;
}

header div:last-child {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

header img {
    height: 60px;
}

.dkaso {
    display: flex !important; flex-direction: row !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
}

.dkaso div {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    header {
        width: 77.5%;
        margin-left: 10%;
        margin-right: 10%;
        flex-direction: row;
        padding: 20px 0;
        gap: 0px;
        padding-bottom: 0
    }
    header div:first-child {
        flex-direction: row;
        width: 70%;
    }
    .dkaso {
        justify-content: flex-start !important;
    }
    header div:last-child {
        justify-content: flex-end;
        width: 30%;
    }
    .svg-topo {
        margin-left: 25px;
        margin-right: 5px;
        fill: #00dbca;
    }
    header div span {
        justify-content: flex-start;
    }
}

.banner.carro {
    background: url("../img/banner-lp-mobile-carro.webp?v=2") no-repeat center center;
    background-size: 100%;
    aspect-ratio: 40/51;
}

.banner.moto {
    background: url("../img/banner-lp-mobile-moto.webp?v=2") no-repeat center center;
    background-size: 100%;
    aspect-ratio: 40/51;
}

.banner.frota {
    background: url("../img/banner-lp-mobile-frota.webp?v=2") no-repeat center center;
    background-size: 100%;
    aspect-ratio: 40/51;
}
.banner.luxo {
    background: url("../img/banner-lp-mobile-luxo.webp?v=2") no-repeat center center;
    background-size: 100%;
    aspect-ratio: 40/51;
}

.banner.app {
    background: url("../img/banner-lp-mobile-app.webp?v=2") no-repeat center center;
    background-size: 100%;
    aspect-ratio: 40/51;
}


@media screen and (min-width: 768px) {
    .banner.carro {
        background: url("../img/banner-lp.webp?v=2") no-repeat center center;
        background-size: 100%;
        aspect-ratio: 500/133;
    }
    .banner.moto {
        background: url("../img/banner-lp-moto.webp?v=2") no-repeat center center;
        background-size: 100%;
        aspect-ratio: 500/133;
    }
    .banner.frota {
        background: url("../img/banner-lp-frota.webp?v=2") no-repeat center center;
        background-size: 100%;
        aspect-ratio: 500/133;
    }
    .banner.luxo {
        background: url("../img/banner-lp-luxo.webp?v=2") no-repeat center center;
        background-size: 100%;
        aspect-ratio: 500/133;
    }
    .banner.app {
        background: url("../img/banner-lp-app.webp?v=2") no-repeat center center;
        background-size: 100%;
        aspect-ratio: 500/133;
    }
}

.width-limit {
    padding-left: 3%;
    padding-right: 3%;
}

@media screen and (min-width: 768px) {
    .width-limit {
        padding-left: 10%;
        padding-right: 40%;
    }
}

.banner-text {
    background-color: #7a848d;
    color: #fff;
    padding-top: 1%;
    padding-bottom: 1%;
}

.banner-text h2 {
    font-size: 20px;
    text-align: center;
}

.description {
    margin-top: 2%;
    margin-bottom: 2%;
    color: #7a848d;
    font-size: 16px;
    line-height: 1.5;
}
.description p {
    font-weight: 300;
}
.description p b {
    font-weight: 500;
}
@media screen and (min-width: 768px){
    .description {
        font-size: 20px;
    }
}

.text-form {
    color: #00dbca;
    padding-left: 10%;
    margin-right: 50%;
    font-size: 30px;
    padding-top: 1%;
    padding-bottom: 1%;
}

.text-form::after {
    content: "";
    clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
    position: absolute;
    right: 0;
    top: 0;
}

@media screen and (min-width: 768px) {
    .banner-text h2 {
        font-size: 25px;
        text-align: left;
    }
}

@media screen and (min-width: 1600px) {
    .text-form {
        font-size: 40px;
    }
}



section#logos {
    margin: 20px 0;
}

section#logos p {
    margin-top: 30px;
    color: #7a848d;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

section#logos .grid {
    display: grid;
    grid-template-columns: 50% 50%;
}

section#logos .grid img{
    max-width: 80%;
    max-height: 150px;
    margin: auto;
}

section#logos .grid div:last-child img{
    max-width: 50%;
    height: 70%;
    margin: auto;
    
}

section#logos .grid div {
    display: flex;
}

section#protection {
    margin: 50px 0;
}

section#protection .grid div {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

section#protection img {
    height: 70px;
}

section#protection .grid-cols-3 {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 10px;
    align-items: start;
}

section#protection .grid-cols-2 {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 10px;
    margin-top: 10px;
}

section#protection .grid-cols-3 h3 {
    color: #7a848d;
    text-align: center;
    font-size: 16px;
    width: 90%;
    margin: auto;
    text-transform: uppercase;
}

section#protection .grid-cols-2 h3 {
    color: #7a848d;
    text-align: center;
    font-size: 16px;
    width: 60%;
    margin: auto;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    section#protection .grid-cols-3 {
        grid-template-columns: 33% 33% 33%;
    }
    
    section#protection .grid-cols-2 {
        grid-template-columns: 50% 50%;
    }
    section#protection .grid-cols-3 h3, section#protection .grid-cols-2 h3 {
        font-size: 19px;
    }
    section#logos .grid div:last-child img{
        max-width: 80%;
        max-height: 150px;
        margin: auto;
    }
    section#protection div {
        margin-bottom: 0px;
    }
}

section#protection p {
    margin-top: 0px;
    color: #7a848d;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.aditionals .row{
    display: flex;
    flex-direction: grid;
    align-items: center;
    position: relative;
    gap: 5%;
    margin: 20px 0;
}

.aditionals .row:nth-child(2) img {
    order: 1;
}

.aditionals .row img{
    width: 35%;
}

.aditionals h2 {
    color: #7a848d;
    font-size: 20px;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .aditionals h2 {
        font-size: 35px;
    }
}

.aditionals h2 span {
    color: var(--primary-color);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

#advantages {
    background-color: #ffffff;
}

#advantages .grid {
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 4px #b4bcc3 inset;
    padding: 20px;
    border-radius: 25px;
    display: grid;    
    grid-template-columns: 100%;
    text-align: center;
    margin: 20px 0;
}

#advantages .grid div {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

@media screen and (max-width: 768px) {
    #advantages .grid div {
        border: none !important;
        border-bottom: 1px solid #959da4 !important;
    }
    #advantages .grid div:last-child {
        border: none !important;
    }
}


@media screen and (min-width: 768px) {
    #advantages .grid div {
        justify-content: center;
        padding: 30px;
        margin: 0px 0;
    }

    #advantages .grid {
        grid-template-columns: 50% 50%;
    }
}

#advantages .grid img {
    height: 70px;
}

#advantages h3 {
    color: #7a848d;
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    #advantages h3 {
        font-size: 18px;
    }
}

#banner-footer {
    background: url("../../assets/img/rodape-mobile.webp?v=3");
    background-size: 100%;
    aspect-ratio: 6/9;
}

@media screen and (min-width: 768px) {
    #banner-footer {
        background: url("../../assets/img/banner-footer.webp?v=1");
        aspect-ratio: 6/1;
        background-size: 100%;
    }
    
    footer p br {
        display: none;
    }
}

#clients {
    margin: 50px 0;
}

#clients .client {
    display: grid;
    grid-template-columns: 26% 66%;
    gap: 8%;
    align-items: center;
}

#clients .client p {
    margin: 20px 0;
}

#clients .client img{
    width: 100%;
}

#clients .client .dialog {
    padding: 12% 10%;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    position: relative;
}

#clients .client .dialog::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 2em solid transparent;
    border-right: 2em solid var(--primary-color);
    border-top: 2em solid transparent;
    border-bottom: 1em solid transparent;
    position: absolute;
    top: 50%;
    left: -14%;
    transform: translateY(-50%);
}


footer {
    color: #7a848d;
    padding: 50px 17%;
}

footer .grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5%;
}


footer .grid img {
    width: 90px;
    height: 100%;
}

@media screen and (max-width: 1400px) {
    footer {
        padding: 50px 10%;
    }
}

footer .absolute-footer {
    margin-top: 35px;
    text-align: center;
}

footer svg {
    fill: #fff;
    font-size: 30px;
    cursor: pointer;
}

footer h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

footer p {
    margin-top: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

footer .social-media a{
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    footer .grid {
        display: grid;
        grid-template-columns: 20% 60% 20%;
        align-items: center;
        text-align: left;
    }
}

aside#float-form {
    background-color: rgba(0, 0, 0, 0.7);
    /* background-color: rgba(41, 10, 84, 0.7); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    display: none;
}


aside#float-form.active {
    display: flex;
}

aside#float-form h2 {
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    color: yellow;
}

aside#float-form p {
    font-size: 16px;
}

aside#float-form span.__yellow {
    color: yellow;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

aside#float-form span.__blue {
    color: #00dbca;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

aside#float-form .box {
    background-color: var(--primary-color);
    max-width: 600px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 5%;
    border-radius: 15px;
    gap: 10px;
    position: relative;
}

aside#float-form .box form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    display: none;
}

aside#float-form .box .input-group {
    display: flex;
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 13px;
}

aside#float-form .box .input-group.telephone {
    display: grid;
    grid-template-columns: 18% 78%;
    gap: 4%;
}

aside#float-form .box label {
    width: 100%;
}

aside#float-form .box input {
    padding: 10px 5px;
    border: none;
    border-radius: 5px;
}

aside#float-form .box button {
    width: fit-content;
    background-color: transparent;
    color: #fff;
    margin: auto;
    border: none;
    padding: 10px 60px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 23px;
    color: #00dbca;
    fill: #00dbca;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

aside#float-form .box .close {
    fill: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    aside#float-form {
        background-color: transparent;
        width: fit-content;
        left: auto;
        right: 0;
        height: auto;
        z-index: 10000;
        display: flex;
        position: fixed;
        margin: 0;
        top: 16%;
        text-align: center;
    }

    aside#float-form .box {
        margin: 0;
        right: 20px;
        width: 300px;
    }

    .float-form-toggle.close {
        display: none;
    }
}

.float-buttons .wpp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background-color: transparent;
    border: none;
}

.float-buttons .wpp img {
    width: 80px;
}

.float-buttons .contact {
    position: fixed;
    right: 20px;
    bottom: 105px;
    z-index: 1000;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: block;
}

.float-buttons .contact img {
    width: 80px;
}

.form-label {
    display: grid;
    grid-template-columns: 50% 50%;
}
.boxzin {
    margin-top: 40px;
    background: url("../img/boxzin.webp") no-repeat;
    background-position: right;
    background-size: 100%;
    aspect-ratio: 538/73;
    width: 50%;
    color: #00dbca;
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 14%;
    background-size: cover;
    padding-top: 5%;
    padding-bottom: 5%;
    width: 100%;
    font-size: 15px;
}
@media screen and (min-width: 768px) {
    .boxzin {
        font-size: 11px;
    }
}

@media screen and (min-width: 920px) {
    .boxzin {
        font-size: 12px;
    }
    .float-buttons .contact {
        display: none;
    }
}

@media screen and (min-width: 1300px) {
    .boxzin {
        font-size: 17px;
        padding-right: 5%;
    }
}

.swiper-slide {
    display: flex !important;
}

.swiper-slide img{
    width: 85% !important;
    margin: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    border: 1px solid #40dfd0;
    color: #40dfd0;
    border-radius: 100%;
    padding: 5px 10px;
}

@media screen and (min-width: 768px) {
    .boxzin {
        padding-top: 0;
        padding-bottom: 0;
        background-size: 100%;
        width: 50%;
    }
    
}

#message {
    display: none;
}


header div {
    justify-content: space-around;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    footer img {
        margin: 30px 0 20px;
    }
    footer {
        padding: 25px 10%;
    }
}

#cc-main .cm__btn {
    background-color: var(--primary-color) !important;
}

.show--consent #cc-main .cc--anim .cm--bar {
    padding: 30px 0;
}

#zap-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999999;
    display: none;
}

#zap-form.active {
    display: flex;
}

#zap-form .mini-form {
    position: absolute;
    right: 15px;
    bottom: 110px;
    background-color: #fff;
    width: 320px;
    border-radius: 15px;
}

#zap-form .mini-form #title, #zap-form .mini-form #body {
    padding: 15px;
}

#zap-form .mini-form #title {
    padding-top: 30px;
    background-color: rgba(38,92,84,1);
    border-radius: 5px 5px 0 0;
}

#zap-form .mini-form #title p {
  color: rgb(229, 229, 229);
  margin-bottom: 0;
}

#zap-form .mini-form #body {
    background-color: rgba(235,229,222,1);
    border-radius: 0 0 5px 5px;
}

#zap-form .mini-form input {
    margin: 5px 0;
    width: 100%;
    border: 1px solid #fefefe;
    padding: 5px 2px;
    height: 40px;
}


#zap-form .mini-form button {
    margin-top: 10px;
    width: 100%;
    background-color: rgba(83,164,81,1);
    color: #fff;
    padding: 7px 0;
    border: none;
    cursor: pointer;
}

#zap-form .close {
    fill: #fff;
    position: absolute;
    right: 10px;
    top: 5px;
}

#zap-form #zap-message-error {
    color: red;
    font-size: 11px;
    text-align: center;
}

.toggle-zap-form {
    cursor: pointer;
}


.wpp-type {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpp-type input {
    width: inherit !important;
    height: inherit !important;
}
