*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figerona', sans-serif;
   
}
@font-face {
    font-family: "sans-serif";
    src: url("/fonts/Figerona-Bold.otf") format("woff2"),
         url("/fonts/Figerona-Medium.otf") format("woff");
}


html, body{
    background-color:#EDEDED;
    overflow-x: hidden;
    color:var(--text-color);
    font-weight: 400;
}

:root {
    --main-bg-color: pink;
    --menu-speed: 0.75s;
    --overlay-color: rgba(24, 39, 51 , 0.85);
    --text-color:#000000de;
    --primary-color:#253d54;
    --secondary-color:#27abbb;
    --light-text:#777;
}

/* classes auxiliares */
.mobile{
    display: none;
}
.cielo{
    max-width:182px!important;
}

.object-fit-cover{
    object-fit:cover;
}
.mx-auto{
    margin: 0 auto;
}

.my-5{
    margin: 30px 0;
}

.mt-5{
    margin-top: 30px;
}

.mt-xl{
    margin-top:90px;
}

.mt-5{
    margin-top: 50px;
}

.my-3{
    margin: 20px 0;
}

.my-2{
    margin: 15px 0;
}

.py-5{
    padding: 30px 0;
}

.py-3{
    padding: 20px 0;
}

.py-2{
    padding: 15px 0;
}

.py-1{
    padding: 8px 0;
}

.px-2{
    padding:0 20px!important;
}

.px-3{
    padding:0 30px!important;
}


.flex{
    display: flex;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex-col{
    flex-direction: column;
}

.justify-center{
    justify-content: center;
}

.justify-between{
    justify-content: space-between;
}

.justify-around{
    justify-content:space-around;
}

.items-center{
    align-items: center;
}

.text-center{
    text-align:center;
}

.container{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
}

.container-md{
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2%;
}

.container-sm{
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.grid{
    display: grid;
}

.col-3{
    grid-template-columns: repeat(3, 1fr)
}

.col-4{
    grid-template-columns: repeat(4, 1fr)
}

.col-2{
    grid-template-columns: repeat(2, 1fr)
}

.max-w-full{
    max-width:100%!important;
}

.w-full{
    width: 100%!important;
}

.img-responsive{
    max-width:100%;
}

.max-w-200{
    max-width:200px!important;
    width: 100%;
}

.max-w-250{
    max-width:250px!important;
    width: 100%;
}

.max-w-300{
    max-width:300px!important;
    width: 100%;
}

.max-w-400{
    max-width:400px!important;
    width: 100%;
}

.bg-white{
    color: var(--light-text);
    background-color:white;
}

.gap-1{
    gap: 10px;
}

.gap-2{
    gap: 20px;
}

.gap-3{
    gap: 30px;
}

.gap-5{
    gap: 50px;
}

.rounded-sm{
    border-radius: 4px;
}

.rounded-full{
    border-radius: 50%;
}

.btn-primary{
    padding:.80rem;
    max-width: 400px;
    width: 100%;
    border:0;
    color:white;
    background-color: var(--primary-color);
    text-align: center;
    cursor: pointer;
    font-size: 1.3rem;
    border-radius: 4px;
    transition:0.1s ease-in-out;
    text-decoration: none;
    display: block;
}
.btn-primary:hover{
    background-color:var(--secondary-color);
}
.btn-secondary{
    padding:.80rem;
    max-width: 400px;
    width: 100%;
    border:0;
    color:var(--secondary-color);
    border: 1px solid var(--primary-color);
    text-align: center;
    background:white;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease-in-out;
    border-radius: 4px;
}
.btn-secondary:hover{
    background-color:var(--secondary-color);
    color:white;
    border:1px solid var(--secondary-color);
}
.custom-label{
    color:var(--light-text);
    margin-bottom: 0.30rem;
    display:block;
}
.custom-input{
    padding: 0.70rem;
    color:var(--primary-color);
    max-width: 400px;
    width: 100%;
    display: block;
    margin-bottom: 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}
   
.custom-input:focus{
    outline-color: var(--secondary-color);
}
/* fim das classes auxiliares */

/* estilos para o menu */

/* MENU STYLES */
.menu-wrap {
    position: fixed;
    top: 16px;
    right: 100px;
    z-index: 999;
}
  
  .menu-wrap .toggler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
  }
  
  .menu-wrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 60px;
    height: 60px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hamburger Line */
  .menu-wrap .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background:#495371;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  /* Hamburger Lines - Top & Bottom */
  .menu-wrap .hamburger > div::before,
  .menu-wrap .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
  }
  
  /* Moves Line Down */
  .menu-wrap .hamburger > div::after {
    top: 10px;
  }
  
  /* Toggler Animation */
  .menu-wrap .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
  }
  
  /* Turns Lines Into X */
  .menu-wrap .toggler:checked + .hamburger > div:before,
  .menu-wrap .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
  }
  
  /* Rotate On Hover When Checked */
  .menu-wrap .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
  }
  
  /* Show Menu */
  .menu-wrap .toggler:checked ~ .menu {
    visibility: visible;
  }
  
  .menu-wrap .toggler:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
  }
  
  .menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition:  opacity 0.4s ease 0.4s;
  }
  
  .menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menu-wrap .menu > div {
    background: var(--secondary-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
  }
  
  .menu-wrap .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
  }
  
  .menu-wrap .menu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
  }

/* fim dos estilos para o menu */

/* estilos para o header */
header.nav{
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
}
.logo img{
    max-width:280px;
}

header.nav{
    background-color:white;
    padding:30px;
}

header.nav ul li{
    list-style-type:none;
}

.nav-active{
    color:var(--text-color) !important;
    /*color:#74959A !important;*/
}

header.nav ul li a{
    text-decoration: none;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    color: #495371;
}

/* estilos para o slide */

header.hero{
    margin:90px 0;
}


.slider {
	position: relative;
	height: max-content;
	width: 100%;
	overflow: hidden;
}


.slider-content {
	position: relative;
	width: 100%;
}

.slider-content-wrapper {
	display: flex;
	height: 400px;
	transition: transform 0.5s ease-in-out;
}


.slider-content__item {
	flex: 1 0 100%;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 100px;
	color: rgba(0, 0, 0, 0.2);
	/*display: flex;*/
	align-items: center;
	justify-content: center;
}

p.image-banner {
    font-size: 50px; 
    font-weight: 500; 
    color: #fff; 
    margin-left: 300px;
    padding-top: 30px;
}

.image-1 {
    background-image: url('../images/1.png'); /*url('../images/slide_debitos.png'); */
    background-color: #fff;
}

.image-2 {
    background-image: url('../images/2.png'); /*url('../images/slide_motor.png'); */
	background-color: #fff;
}
.image-3 {
    background-image: url('../images/3.png'); /*url('../images/slide_frota.png'); */
	background-color: #fff;
}
.image-4 {
    background-image: url('../images/4.png'); /*url('../images/slide_parceiros.png'); */
	background-color: #fff;
}
.image-5 {
	background-color: #fff;
}
.image-6 {
	background-color: #fff;
}


.slider-controls {
	padding: 20px;
	text-align: center;

}

.slider-content__controls {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	/*transform: translateY(-50%);*/
	/*padding:0 15px;*/
}

/* Arrows */
.prev-arrow,
.next-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color:white;
	width: 20px;
	transition: all 0.3s;
    height:30px;
    width: 30px;
}
.next-arrow svg, .prev-arrow svg{
    height:30px;
    width: 30px;
    background:#495371;
    border-radius:50%;
}

.prev-arrow {
	left: 20px;
    color:white;
}
.next-arrow {
	right: 20px;
}

.prev-arrow:hover,
.next-arrow:hover {
	cursor: pointer;
	color: rgba(0, 0, 0, 0.7);
}

/* Dots */
.dots {
	position: absolute;
	display: flex;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10%;
}

.dot {
    cursor: pointer;
	width: 8px;
	height: 8px;
	margin-right: 4px;
    background-color: var(--primary-color);
	/*background-color: rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 5px 0px rgba(0,0,0,0.9);*/
	border-radius: 50%;
	transition: all 0.3s;
}

.dot:last-child {
	margin-right: 0;
}
.dot:hover {
	background-color: #fff;
}
.dot--active {
    background-color: var(--secondary-color);
	/*background-color: rgba(255, 255, 255, 0.5);*/
}

/* Mods */
.disabled {
	background-color: #dccfcf;
	color: #b0a8a8;
	cursor: default;
	pointer-events: none;
}

.d-none {
	display: none;
}
.active {
	opacity: 1;
}
.centered {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* fim dos estilos para o slide */


form.debitos h5{
    font-weight:bold;
    color:var(--secondary-color);
    font-size:2.1rem;
}
form.debitos p{
    color:var(--text-color);
    font-size:1rem;
    margin: 1rem 0 2rem 0;
}

.big-link{
    width: 100%;
    height: 90px;
    background-color:var(--secondary-color);
    color:white;
    text-decoration: none;
    font-size: 2rem;
    text-align: center;
    transition:0.1s ease-in-out;
    margin: 90px 0;
    padding: 0 2%;
}
.big-link:hover{
    background-color:var(--primary-color);
}

.diferenciais__single{
    max-width:204px;
    width: 100%;
    text-align: center;
}
.diferenciais__single p{
    color:var(--light-text)
}
.diferenciais__single h5{
    color:var(--text-color);
    font-size:1.2rem;
    margin: 1.2rem 0 0.7rem 0;
    font-weight: bold;
}
.diferenciais__icon{
    height:75px;
    width: 75px;
    border-radius: 50%;
    background:#DEDEDE;
    display:flex;
    justify-content:center;
    align-items: center;
    transition:0.1s ease-in-out;
}
.diferenciais__icon:hover{
    background-color:var(--secondary-color);
}
.diferenciais__icon:hover svg > path{
    fill:white;
}

section.depoimentos{
    margin:4rem 0;
}

section.depoimentos h2{
    color:var(--secondary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

section.depoimentos a{
    max-width:600px;
    margin: 30px auto;
}
.depoimento__single:nth-child(1){
    border-right: 1px dashed var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
    max-width: 400px;
    width: 100%;
    padding: 1rem;
    text-align: left;
}
.depoimento__single:nth-child(2){
    border-bottom: 1px dashed var(--primary-color);
    max-width: 400px;
    width: 100%;
    padding: 1rem;
    text-align: left;
}
.depoimento__single:nth-child(3){
    border-right: 1px dashed var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
    max-width: 400px;
    width: 100%;
    padding: 1rem;
    text-align: left;
}
.depoimento__single p{
    color:var(--primary-color);
}
.depoimento__single h5{
    color:#607A7E;
    font-size: 1rem;
    margin-top: 10px;
}

section.contact{
    padding: 2rem 0;
}

section.contact h2{
    color:var(--secondary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact__form{
    padding:2rem;
    background: #FFFFFF;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    max-width:600px;
    width: 100%;
}
.contact__form .custom-input{
    max-width:100%;
}
.contact__form .btn-primary{
    max-width:100%;
}
.contact__form h6{
    font-size: 1.04rem;
    color:var(--secondary-color);
    margin-bottom:1rem;
}

footer{
    background:var(--primary-color);
    padding: 2rem 0;
    color:white;
}

.footer__img{
    max-width:231px;
    width: 100%;
}

footer h5{
    font-weight: bold;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
footer h6{
    font-weight: bold;
    font-size: 0.90rem;
    margin-bottom: 1rem;
}

footer ul{
    max-width:277px;
    width: 100%;
}
footer li{
    list-style:none;
    font-size: 0.90rem;
    margin: 0.80rem 0;
}


/* estilos para a página de servicos */
section.breadcrumb{
    padding:4rem 0;
    margin-top: 90px;

}

section.breadcrumb h1{
    color:var(--secondary-color);
    margin-top: 1rem;  
    font-size: 2rem;
}
section.breadcrumb a{
    color:var(--light-text);
    text-decoration:none;
}
section.breadcrumb p{
    color:var(--light-text);
}

section.services{
 
    margin-top:-10px;
}
/* fim dos estilos para a página de servicos */

/* estilos para a página de orçamento */

section.orcamento h1{
    color:var(--secondary-color);
    font-size:2rem;
}

.orcamento__form{
    max-width:600px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 20px 60px #ddd;
    padding: 2rem;
    margin: -10px auto;
    border-radius: 4px;
}   
.orcamento__form h2{
    font-size:1rem;
    color:var(--light-text);
    margin-bottom: 1.2rem;
}

/* fim dos estilos para a página de orçamento */

/* estilos para a página de formulários */

.formularios__single{
    text-decoration: none;
}
.formularios__single:hover > .diferenciais__icon{
    background-color:var(--secondary-color);
}
.formularios__single:hover > .diferenciais__icon svg > path{
    fill:white;
}
.formularios__single h4{
    font-size:1.2rem;
    color:var(--light-text);
    font-weight: bold;
}

/* fim dos estilos para a página de formulários */

/* estilos para a página de contato */
section.mapa{
    position: relative;
}

.mapa__form{
    position: absolute;
    right: 100px;
    top: 100px;
    max-width:600px;
    width: 100%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
}
.mapa__form h2{
    font-size:1.2rem;
    color:var(--light-text);
}

.custom-area{
    max-width:400px;
    width: 100%;
    resize: vertical;
    height:200px;
    border: 1px solid var(--light-text);
    border-radius: 4px;
    padding: 1rem;
}
.custom-area:focus{
    outline-color:var(--secondary-color)
}
/* fim dos estilos para a página de contato */

/* media queries */
@media screen and (max-width: 768px){
    .desktop{
        display: none !important;
    }

    .mobile{
        display: block!important;
    }
    .col-3, .col-4, .col-2{
        grid-template-columns: 1fr;
    }
    
    .flex-md{
        display: flex;
        flex-direction: columns;
    }
    .md-justify-center{
        justify-content: center;
    }
    .big-link{
        font-size:18px;
    }
    footer .container{
        display:flex;
        flex-direction: column;
    }
    footer ul{
        margin: 20px auto;
    }
    .footer__img{
        margin: 0 auto;
        max-width:277px;
    }
    .depoimento__single:nth-child(1), .depoimento__single:nth-child(2){
        border: 1px dashed var(--primary-color);
    }
    .md-gap-3{
        gap: 30px;
    }
    .md-mt-3{
        margin-top:30px;
    }

    .md-w-full{
        max-width:100%!important;
    }
    .mapa__form{
        position: static;
        margin: 20px auto;
    }
    section.mapa iframe{
        height:300px;
    }
    .md-gap-0{
        gap:0;
    }
    .md-my-2-sm{
        margin: 10px 0;
    }
    .logo img{
        max-width:180px;
    }
}

@media screen and (max-width: 500px){
    .menu-wrap .menu > div{
        width: 300vw;
        height: 300vw;
    }
    header.nav{
        padding: 0;
    }
    footer ul{
        text-align: center;
    }
}


/*UP DATES*/

.margin-90{
    margin-bottom: 90px;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
  }

  .modal:target {
    opacity: 1;
    pointer-events: auto;
  }

  .modal > div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 15px 20px;
    background: #fff;
  }

  .fechar {
    position: absolute;
    width: 30px;
    right: -1px;
    top: -15px;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    margin-top: 5px;
    background: var(--secondary-color);
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
  }

  .fechar:hover{
    background: var(--primary-color);
  }

  .formulariosContainer{
      margin-left: 50px;
  }

  .formulariosContainer a {
      padding: 20px;
  }