@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;300;400;500;600;700;800;900&display=swap');

:root {
    --orange: #ffaa23;
    --gray: #364b57;
    --light-gray: #f3f3f3;
    --commom-margin: 50px;
    --text-xs: 12px;
    --text-sx: 14px;
    --text-sm: 15px;
    --text-md: 18px;
    --text-xmd: 20px;
    --text-lg: 22px;
    --text-xl: 26px;
}

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

* {
    font-family: 'Heebo', sans-serif;
    box-sizing: border-box;
}

h2 {
    font-size: var(--text-xl);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0;
}

@media screen and (max-width: 1200px) {
    h2 {
        text-align: center;
        font-size: var(--text-md);
    }
}

a {
    text-decoration: none;
}

body {
    overflow-x: hidden;
    margin: 0;
}

.mobile {display: none;}
.desktop {display: block;}

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

header #top {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
}

header #top .logo{
    width: 100%;
    display: flex;
}

header #top img {
    margin: 0 auto 0 auto !important;
    width: 150px;
    height: auto;
    padding-right: 5%;
}

header #top svg  {
    fill: var(--gray);
    width: 15px;
    height: 25px;
    vertical-align: middle;
}

header #top p {
    font-weight: 700;
    font-size: var(--text-md);
    color: var(--gray);
}


@media screen and (max-width: 768px) {
    header {
        display: flex;
        margin: 5px 50px 15px;
        flex-direction: row-reverse;
    }
}

nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    position: relative;
    margin: auto
}

nav ul a{
    text-decoration: none;
}

nav ul a:hover{
    font-weight: 600;
}
  
nav ul li {
    list-style-type: none;
    font-size: var(--text-sx);
    padding: 0 10px;
    border-right: 1px solid var(--gray);
    cursor: pointer;
    color: var(--gray);
}

@media screen and (max-width: 1200px) {
    .logo-with-hamburguer {
        width: 100%;
        justify-content: flex-end;
    }
    .logo-with-hamburguer .hamburguer-menu {
        margin: auto 0;
    }

    header #top img {
        width: 80px;
        padding: 0;
    }
    nav ul {
        display: block;
    }
      
    nav ul li {
        border-right: none;
        text-align: center;
        margin: 10px 0;
    }
    
}

nav ul a:first-child li{
    padding-left: 0;
}

nav ul a:last-child li{
    border-right: 0;
}
    
.logo-with-hamburguer {
    display: none;
}

.logo-with-hamburguer .hamburguer-menu {
    display: none;
}

.logo-with-hamburguer a.hamburguer-menu {
    display: block;
}

.logo-with-hamburguer.mobile {
    display: none;
}

nav.stretch-layout {
    width: 50%;
}


@media screen and (max-width: 1200px) {
    #bg-nav {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 20;
        transition-duration: 1s;
    }
    
    .logo-with-hamburguer {
        display: flex;
    }

    nav.stretch-layout {
        transform: translate(-100%, 0);
        padding: 0;
        position: fixed;
        width: 100% !important;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 30;
        color: white;
        transition: all 1s;
        display: block !important;
    }
    nav.stretch-layout.opened {
        background-color: rgba(0, 0, 0, 0.5);
        transform: translate(0, 0);
    }
    nav.stretch-layout ul {
        text-align: left;
        display: inline-block;
        width: 80%;
        height: 100%;
        background-color: #fff;
        padding-top: 30px;
        padding-left: 30px;
    }
    nav.stretch-layout ul li{
        text-align: left;
    }
    .logo-with-hamburguer.mobile button {
        margin: auto 0;
    }
    .logo-with-hamburguer.mobile img {
        width: 80px;
        margin-right: 30px;
    }
    .logo-with-hamburguer.mobile {
        justify-content: space-between;
    }
    .logo-with-hamburguer.mobile {
        display: flex;
    }
    .logo-with-hamburguer .hamburguer-menu {
        display: flex;
    }

    .logo-with-hamburguer.mobile svg{
        margin: auto;
    }

}
    
.stretch-layout {
    width: 50%;
    margin-left: 15%;
}

@media screen and (max-width: 1200px) {
    .stretch-layout {
        width: 340px;
        margin: 0 auto;
        padding: 0 5px;
        box-sizing: border-box;
    }
}

#form-wpp-button {
    position: fixed;
    top: 30%;
    left: 70%;
    z-index: 3;
}

#form-wpp-button img {
    width: 300px;
    cursor: pointer;
}

#form-wpp-button img#wpp-icon {
    width: 50px;
    position: absolute;
    top: -20px;
    right: -20px;
}

@media screen and (max-width: 1200px) {
    #form-wpp-button {
        position: fixed;
        right: 5%;
        bottom: 5%;
        top: unset;
        z-index: 3;
        left: unset;
    }
    #form-wpp-button img#wpp-icon {
        top: -35px;
    }
    #form-wpp-button img {
        width: 150px;
        cursor: pointer;
    }
}

section#banner {
    position: relative;
}

div.banner {
    position: absolute;
}

div.banner.left {
    transform: translateX(-200vw);
}

div.banner.right {
    transform: translateX(200vw);
}

div.banner.center {
    opacity: 1;
    display: block;
    position: relative;
}

div#banner-1 {
    background: url("../img/banner.png");
    background-size: cover;
    height: 400px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

div#banner-2 {
    background: url("../img/banner-2.png");
    background-size: cover;
    height: 400px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

section#banner.mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    section#banner.mobile {
        height: 300px;
    }
    section#banner.mobile .banner-mobile {
        background-size: cover;
        background-position: 42%;
        height: 300px;
        width: 360px;
        margin: 0 auto
    }
    section#banner.mobile .banner-mobile {
        position: absolute;
    }
    section#banner.mobile .banner-mobile.left {
        transform: translateX(-200vw);
    }
    
    section#banner.mobile .banner-mobile.right {
        transform: translateX(200vw);
    }
    
    section#banner.mobile .banner-mobile.center {
        opacity: 1;
        display: block;
        position: relative;
    }
    section#banner.desktop {
        display: none;
    }
    section#banner.mobile {
        display: flex;
    }
    section#banner.mobile #banner-mobile-1{
        background: url("../img/banner-mobile-1.png");
        background-size: cover;
        display: flex;
    }

    section#banner.mobile #banner-mobile-2{
        background: url("../img/banner-mobile-2.png");
        background-size: cover;
        display: flex;
    }

    section#banner.mobile #banner-mobile-3{
        background: url("../img/banner-mobile-3.png");
        background-size: cover;
        display: flex;
    }
    
    section#banner.mobile img{
        width: 280px;
        margin: auto;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

section.call {
    margin-top: 50px;
    margin-bottom: var(--commom-margin);
    border: 1px solid var(--orange);
    border-radius: 30px 30px 30px 65px;
}

@media screen and (max-width: 1200px) {
    section.call#call-1 {
        margin-top: 130px;
    }
}
 
section.call p{
    margin: 25px;
    color: var(--gray);
    font-weight: 500;
    font-size: var(--text-xmd);
    line-height: 1.5;
}

section.call p span{
    line-height: .5;
    color: var(--orange);
    font-weight: medium;
    font-size: var(--text-xl);
}

section#reasons {
    margin-top: var(--commom-margin);
    margin-bottom: var(--commom-margin);
}

section#reasons img{
    width: 100%;
    margin: auto
}

section#reasons section#youtube-video {
    margin: var(--commom-margin) 0;
}

section.call#call-2 p{
    font-weight: 600;
}
section#mini_banner_1 {
    background: url("../img/mini_banner_01.png?v=1");
}

section#mini_banner_2 {
    background: url("../img/mini_banner_02.png?v=1");
}

section#mini_banner_3 {
    background: url("../img/mini_banner_03.png?v=1");
}

section#mini_banner_4 {
    background: url("../img/mini_banner_04.png?v=1");
}

section#mini_banner_5 {
    background: url("../img/mini_banner_05.png?v=1");
}

section#mini_banner_6 {
    background: url("../img/mini_banner_06.png?v=1");
}

section#mini_banner_7 {
    background: url("../img/mini_banner_07.png?v=1");
}

section.mini_banner {
    margin: var(--commom-margin) 0;
    width: 100%;
    height: 220px;
    background-position: calc(-100px) center !important;
    background-repeat: no-repeat !important;
    background-size: auto 100% !important;
}



@media screen and (max-width: 1200px) {
    section.mini_banner {
        height: 220px;
        margin: var(--commom-margin) 0;
        width: 600px;
        background-position: center !important;
        background-size: 100% !important;
        margin: 20px auto;
    }

    section#mini_banner_1 {
        background: url("../img/mini_banner_mobile_01.png?v=1");
        background-size: 100%;
        background-position: calc(50%) center;
        background-repeat: no-repeat;
    }
    
    section#mini_banner_2 {
        background: url("../img/mini_banner_mobile_02.png?v=1");
        background-size: 100%;
        background-position: calc(50%) center;
        background-repeat: no-repeat;
    }
    
    section#mini_banner_3 {
        background: url("../img/mini_banner_mobile_03.png?v=1");
        background-size: 100%;
        background-position: calc(50%) center;
        background-repeat: no-repeat;
    }
    
    section#mini_banner_4 {
        background: url("../img/mini_banner_mobile_04.png?v=1");
        background-size: 100%;
        background-position: calc(50%) center;
        background-repeat: no-repeat;
    }
    
    section#mini_banner_5 {
        background: url("../img/mini_banner_mobile_05.png?v=1");
        background-size: 100%;
        background-position: calc(50%) center;
        background-repeat: no-repeat;
    }
    
    section#mini_banner_6 {
        background: url("../img/mini_banner_mobile_06.png?v=1");
        background-size: 100%;
        background-position: calc(50%) center;
        background-repeat: no-repeat;
    }
    
    section#mini_banner_7 {
        background: url("../img/mini_banner_mobile_07.png?v=1");
        background-size: 100%;
        background-position: calc(50%) center;
        background-repeat: no-repeat;
    }
}

@media screen and (min-width: 1300px) {
    section.mini_banner {
        height: 250px;
    }
}

@media screen and (min-width: 1400px) {
    section.mini_banner {
        height: 270px;
    }
}

@media screen and (min-width: 1500px) {
    section.mini_banner {
        height: 290px;
    }
}

@media screen and (min-width: 1600px) {
    section.mini_banner {
        height: 310px;
    }
}

@media screen and (min-width: 1700px) {
    section.mini_banner {
        height: 330px;
    }
}

@media screen and (min-width: 1800px) {
    section.mini_banner {
        height: 350px;
    }
}

section#insurers {
    margin-top: var(--commom-margin);
}

section#insurers .grid.grid-cols-5 {
    display: grid;
    grid-template-columns: 18% 18% 18% 18% 23%;
    gap: 2.5%;
}

@media screen and (max-width: 1200px) {
    section#insurers .grid.grid-cols-5 {
        grid-template-columns: 100%; 
    }
}

section#insurers .grid.grid-cols-5 div{
    display: flex;
}

section#insurers .logos {
    margin: var(--commom-margin) 0;
}

section#insurers img {
    margin: auto;
    height : 60px;
}

section#insurers img#ituran {
    margin-bottom: 25px;
}

section#insurers img#tokio {
    height : 90px;
}

@media screen and (max-width: 1200px) {
    section#insurers img#tokio {
        padding-bottom: 20px;
    }
}

section#insurers img#azul {
    height : 50px;
}

section#insurers button{
    display: none;
}

@media screen and (max-width: 1200px) {
    section#insurers {
        height: 200px;
    }
    section#insurers .grid.grid-cols-5 div.logo{
        display: none;
        transition: 0.5s;
    }
    section#insurers .grid.grid-cols-5 div.logo.left {
        transform: translateX(-200vw);
    }
    
    section#insurers .grid.grid-cols-5 div.logo.right {
        transform: translateX(200vw);
    }
    
    section#insurers .grid.grid-cols-5 div.logo.left, section#insurers .grid.grid-cols-5 div.logo.right {
        display: flex;
        position: absolute;
    }
    
    section#insurers .grid.grid-cols-5 div.logo.center{
        display: flex;
    }
    section#insurers button{
        display: block;
    }

}



section#sallary {
    background-color: var(--light-gray);
    padding: 50px 0;
    margin-top: var(--commom-margin);
    margin-bottom: var(--commom-margin);
}

section#sallary img{
    width: 100%;
}

section#franchiesed {
    margin-top: var(--commom-margin);
    margin-bottom: var(--commom-margin);
    background-color: var(--light-gray);
    padding: 20px 0;
}

section#franchiesed p{
    font-size: var(--text-md);
    color: var(--gray);
}

section#satisfied h2{
    margin: var(--commom-margin) auto;
}

section#absolute-footer{
    margin-top: 50px;
    margin-bottom: 50px;
}

section#absolute-footer .grid {
    display: grid;
    grid-template-columns: 20% 80%;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    section#absolute-footer .grid {
        display: flex;
        flex-direction: column;
    }
}

section#absolute-footer .grid p{
    margin: 0 0 0 30px;
    font-size: 11px;
    line-height: 1.3;
}

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

section#form .form-inner {
    position: relative;
    border-radius: 15px;
    margin: auto;
    width: 50%;
    background-color: var(--gray);
    padding: 5%;
}

section#form .form-inner h2{
    color: var(--orange);
    text-align: center;
    font-size: var(--text-xl);
}

section#form .form-inner input{
    box-sizing: border-box;
    width: auto;
    margin: 5px 5px;
    padding: 10px;
    border-radius: 25px;
    border: none;
}

section#form #step1 input, section#form .form-inner #expectativas input{
    width: 100%;
}

section#form #step2 div{
    margin: 10px 0;
}

section#form div#segmento-div{
    display: none;
}

section#form .form-inner button{
    text-transform: uppercase;
    font-family: 'Heebo', sans-serif;
    color: #fff;
    background-color: var(--orange);
    font-size: 20px;
    border: 3px solid #fff;
    border-radius: 20px;
    width: 100%;
    letter-spacing: 7px;
    font-weight: 600;
    box-shadow: 0px 5px 19px -3px var(--gray);
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-top: 10px;
}

section#form .form-inner button#btn-back{
    background-color: var(--gray);
}

section#form .form-inner #step2, section#form .form-inner #step3{
    display: none;
}

section#form .form-inner label{
    color: #fff;
    display: block;
}

section#form .form-inner #expectativas label{
    width: 100%;

}

section#form .form-inner select{
    width: 100%;
    padding: 3px;
    border-radius: 5px;
}

section#form .form-inner #experiencia-div, section#form .form-inner #equipe-div{
    display: flex;
}

section#form #close-form {
    position: absolute;
    right: 30px;
    top: 30px;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    section#form .form-inner {
        width: 80%;
    }
    section#form #close-form {
        right: 3%;
        top: 3%;
    }
}

div#gestao {
    display: none;
}


.logo-with-hamburguer button {
    height: 35px;
    margin: auto;
    margin-right: 30px;
    background-color: transparent;
    border: none;
}

#youtube-video iframe {
    border-radius: 30px;
}

#youtube-video iframe {
    height: 55vh;
}

@media screen and (max-width: 1200px) {
    #youtube-video iframe {
        height: 180px;
    }
}

.form-open-button {
    background-color: #364b57;
    color: #6cec65;
    border-radius: 15px;
    padding: 15px;
    margin-right: 20%;
    cursor: pointer;
    width: fit-content;
}

.form-open-button h2 {
    font-size: 23px;
    font-weight: 900;
}

.form-open-button h2, .form-open-button h3 {
    color: #6cec65;
    text-align: center;
}

.form-open-button h3{
    margin-top: 5px;
    margin-bottom: 0px;
}

@media screen and (max-width: 1200px) {
    .form-open-button {
        margin: 0 auto;
        width: 86px;
    }

    .form-open-button h2 {
        font-size: .5em;
        font-weight: 700;
    }

    .form-open-button h3 {
        font-size: 0.6em;
        font-weight: 700;
    }
    
    .form-open-button h2, .form-open-button h3 {
        color: #6cec65;
        text-align: center;
    }
    
    .form-open-button h3{
        margin-top: 5px;
        margin-bottom: 0px;
    }
    
}

.social-media h2{
    color: #fdb700;
    font-size: 20px;
}

.footer-franquias .row {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-franquias .social-media{
    margin: 20px 0;
}

.footer-franquias .social-media-row{
    display: inline-block;
}

.footer-franquias .social-media-row a{
    margin-right: 20px;
}

.footer-franquias .social-media i{
    font-size: 40px;
    color: #fdb700;
}

@media screen and (min-width: 1200px) {
    .footer-franquias .social-media{
        max-width: 180px;
    }
    
    .footer-franquias .social-media{
        margin-top: 30px;
    }
    
    .footer-franquias .social-media i{
        font-size: 40px;
        color: #fdb700;
    }
    .footer-franquias .row {
        display: flex;
        gap: 20px;
        justify-content: left;
    }
}