/*header*/
.menu-main-desktop , 
.header-top ,
 .menu-mobile , 
.banner-formulario , 
.auto-repair-services ,
 #about ,
 .depoimentos , 
.footer-content{
  padding: 0px 90px;
}
.menu-main-desktop{
  position: fixed;
  top: 70px;
  transition: top 0.3s ease; 
  width: 100%;
  z-index: 200;
  background: #fff;
  box-shadow: 0px 10px 30px -10px #eee;
}

.navigation-mobile{
  z-index: 200;
  background-color: #fff;
  display: none !important;
}
.menu-mobile{
background-color: #fff;
z-index: 20000;
  display: none  !important;
}

.navigation-desktop ul li a{
  font-size: 20px;
  text-transform: uppercase;
  color: var(--azul);
}
.navigation-desktop ul li a:hover{
 color: var(--cinzaEscuro);
}
.active{
  color: var(--cinzaEscuro) !important;
}

/*header end*/




/****MOBILE***/

/*tablet (Ipad)*/
@media (min-width: 989px) and (max-width:1023px) {
 

.menu-main-desktop , .header-top , .menu-mobile{
  padding: 0px 30px;
}
.menu-main-desktop , .header-top{
display: none !important;
}
.menu-mobile{
position: fixed;
top: 0px;
width: 100%;
display: flex !important;
box-shadow: 30px 1px 50px #eeee;
}
.menu-icon{
width: 25px;
height: 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.menu-icon span {
display: block;
width: 100%;
height: 4px;
border-radius: 3px;
background-color: var(--cinzaMeioEscuro); /* Use sua variável de cor */
transition: all 0.3s ease-in-out;
}
/* Estado ativo: transformar em uma seta para a direita */
.menu-icon.active-menu span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active-menu span:nth-child(2) {
opacity: 0; /* Esconde a linha do meio */
}

.menu-icon.active-menu span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.logo img{
height: 30px;
}
.active-navigation{
display: flex !important;
}
.navigation-mobile {
padding: 20px 2px; /* Ajustei para um padding mais espaçoso */
display: none;
flex-direction: column;  /* Garantir que os itens fiquem empilhados */
width: 28%;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra mais suave */
position: fixed;  /* Fixar a barra lateral */
top: 70px;  /* Início do topo da página */
left: 0;  /* Alinhado à esquerda da tela */
height: 100vh;  /* Altura total da tela */
background-color: #fff;
z-index: 1000;  /* Garante que o menu fique sobre outros elementos */
overflow-y: auto; /* Permite rolar o conteúdo se for necessário */
transform: translateX(-100%);
opacity: 0;
transition: transform 0.5s ease, opacity 0.5s ease;
}

.navigation-mobile.active-navigation {
transform: translateX(0); /* Move o menu para dentro da tela */
opacity: 1;
animation: bounceInLeft 0.6s ease; /* Adiciona a animação */
}

/* Animação Bounce In Left */
@keyframes bounceInLeft {
0% {
  transform: translateX(-300px);
  opacity: 0;
}
60% {
  transform: translateX(30px);
  opacity: 1;
}
80% {
  transform: translateX(-10px);
}
100% {
  transform: translateX(0);
}
}

.active{
background: var(--azul);
color: #fff !important;
padding: 10px 10px !important;
}

.navigation-mobile ul li{
text-transform: uppercase;
color: var(--cinzaMeioEscuro) ;
margin: 4px;
padding: 10px 10px !important;
}
.navigation-mobile ul li a {
width: 100%;
height: 100%;
display: block;
}
.navigation-mobile ul li:hover{
color: #fff!important ;
background: var(--azul) !important;
padding: 10px 10px !important;
}



}
/*tablet pequeno*/
@media (min-width: 768px) and (max-width: 989px) {



 .menu-main-desktop , .header-top , .menu-mobile{
  padding: 0px 30px;
}
.menu-main-desktop , .header-top{
display: none !important;
}
.menu-mobile{
position: fixed;
top: 0px;
width: 100%;
display: flex !important;
box-shadow: 30px 1px 50px #eeee;
}
.menu-icon{
width: 25px;
height: 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.menu-icon span {
display: block;
width: 100%;
height: 4px;
border-radius: 3px;
background-color: var(--cinzaMeioEscuro); /* Use sua variável de cor */
transition: all 0.3s ease-in-out;
}
/* Estado ativo: transformar em uma seta para a direita */
.menu-icon.active-menu span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active-menu span:nth-child(2) {
opacity: 0; /* Esconde a linha do meio */
}

.menu-icon.active-menu span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.logo img{
height: 30px;
}
.active-navigation{
display: flex !important;
}
.navigation-mobile {
padding: 20px 2px; /* Ajustei para um padding mais espaçoso */
display: none;
flex-direction: column;  /* Garantir que os itens fiquem empilhados */
width: 28%;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra mais suave */
position: fixed;  /* Fixar a barra lateral */
top: 70px;  /* Início do topo da página */
left: 0;  /* Alinhado à esquerda da tela */
height: 100vh;  /* Altura total da tela */
background-color: #fff;
z-index: 1000;  /* Garante que o menu fique sobre outros elementos */
overflow-y: auto; /* Permite rolar o conteúdo se for necessário */
transform: translateX(-100%);
opacity: 0;
transition: transform 0.5s ease, opacity 0.5s ease;
}

.navigation-mobile.active-navigation {
transform: translateX(0); /* Move o menu para dentro da tela */
opacity: 1;
animation: bounceInLeft 0.6s ease; /* Adiciona a animação */
}

/* Animação Bounce In Left */
@keyframes bounceInLeft {
0% {
  transform: translateX(-300px);
  opacity: 0;
}
60% {
  transform: translateX(30px);
  opacity: 1;
}
80% {
  transform: translateX(-10px);
}
100% {
  transform: translateX(0);
}
}

.active{
background: var(--azul);
color: #fff !important;
padding: 10px 10px !important;
}

.navigation-mobile ul li{
text-transform: uppercase;
color: var(--cinzaMeioEscuro) ;
margin: 4px;
padding: 10px 10px !important;
}
.navigation-mobile ul li a {
width: 100%;
height: 100%;
display: block;
}
.navigation-mobile ul li:hover{
color: #fff!important ;
background: var(--azul) !important;
padding: 10px 10px !important;
}

}
/*shmartphone*/
@media (min-width: 481px) and (max-width: 768px) {

/* Estilos para telas entre 481px e 768px */
 /* Estilos para telas entre 968px e 1500px */
 .menu-main-desktop , .header-top , .menu-mobile{
  padding: 0px 30px;
}
.menu-main-desktop , .header-top{
display: none !important;
}
.menu-mobile{
position: fixed;
top: 0px;
width: 100%;
display: flex !important;
box-shadow: 30px 1px 50px #eeee;
background-color: #fff;
}
.menu-icon{
width: 25px;
height: 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.menu-icon span {
display: block;
width: 100%;
height: 4px;
border-radius: 3px;
background-color: var(--cinzaMeioEscuro); /* Use sua variável de cor */
transition: all 0.3s ease-in-out;
}
/* Estado ativo: transformar em uma seta para a direita */
.menu-icon.active-menu span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active-menu span:nth-child(2) {
opacity: 0; /* Esconde a linha do meio */
}

.menu-icon.active-menu span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.logo img{
height: 30px;
}
.active-navigation{
display: flex !important;
}
.navigation-mobile {
padding: 20px 2px; /* Ajustei para um padding mais espaçoso */
display: none;
flex-direction: column;  /* Garantir que os itens fiquem empilhados */
width: 28%;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra mais suave */
position: fixed;  /* Fixar a barra lateral */
top: 70px;  /* Início do topo da página */
left: 0;  /* Alinhado à esquerda da tela */
height: 100vh;  /* Altura total da tela */
background-color: #fff;
z-index: 1000;  /* Garante que o menu fique sobre outros elementos */
overflow-y: auto; /* Permite rolar o conteúdo se for necessário */
transform: translateX(-100%);
opacity: 0;
transition: transform 0.5s ease, opacity 0.5s ease;
}

.navigation-mobile.active-navigation {
transform: translateX(0); /* Move o menu para dentro da tela */
opacity: 1;
animation: bounceInLeft 0.6s ease; /* Adiciona a animação */
}

/* Animação Bounce In Left */
@keyframes bounceInLeft {
0% {
  transform: translateX(-300px);
  opacity: 0;
}
60% {
  transform: translateX(30px);
  opacity: 1;
}
80% {
  transform: translateX(-10px);
}
100% {
  transform: translateX(0);
}
}

.active{
background: var(--azul);
color: #fff !important;
padding: 10px 10px !important;
}

.navigation-mobile ul li{
text-transform: uppercase;
color: var(--cinzaMeioEscuro) ;
margin: 4px;
padding: 10px 10px !important;
}
.navigation-mobile ul li a {
width: 100%;
height: 100%;
display: block;
}
.navigation-mobile ul li:hover{
color: #fff!important ;
background: var(--azul) !important;
padding: 10px 10px !important;
}



}
/*shmartphone pequeno*/
@media (max-width: 480px) {

  /* Estilos para telas entre 481px e 768px */
   /* Estilos para telas entre 968px e 1500px */
   .menu-main-desktop , .header-top , .menu-mobile{
    padding: 0px 30px;
  }
 .menu-main-desktop , .header-top{
  display: none !important;
 }
 .menu-mobile{
  position: fixed;
  top: 0px;
  width: 100%;
  display: flex !important;
  box-shadow: 30px 1px 50px #eeee;
  background-color: #fff;
 }
 .menu-icon{
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
 }
 .menu-icon span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background-color: var(--cinzaMeioEscuro); /* Use sua variável de cor */
  transition: all 0.3s ease-in-out;
}
/* Estado ativo: transformar em uma seta para a direita */
.menu-icon.active-menu span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active-menu span:nth-child(2) {
  opacity: 0; /* Esconde a linha do meio */
}

.menu-icon.active-menu span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.logo img{
  height: 30px;
}
.active-navigation{
  display: flex !important;
}
.navigation-mobile {
  padding: 20px 2px; /* Ajustei para um padding mais espaçoso */
  display: none;
  flex-direction: column;  /* Garantir que os itens fiquem empilhados */
  width: 50%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra mais suave */
  position: fixed;  /* Fixar a barra lateral */
  top: 70px;  /* Início do topo da página */
  left: 0;  /* Alinhado à esquerda da tela */
  height: 100vh;  /* Altura total da tela */
  background-color: #fff;
  z-index: 1000;  /* Garante que o menu fique sobre outros elementos */
  overflow-y: auto; /* Permite rolar o conteúdo se for necessário */
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.navigation-mobile.active-navigation {
  transform: translateX(0); /* Move o menu para dentro da tela */
  opacity: 1;
  animation: bounceInLeft 0.6s ease; /* Adiciona a animação */
}

/* Animação Bounce In Left */
@keyframes bounceInLeft {
  0% {
    transform: translateX(-300px);
    opacity: 0;
  }
  60% {
    transform: translateX(30px);
    opacity: 1;
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

.active{
  background: var(--azul);
  color: #fff !important;
  padding: 10px 10px !important;
}

.navigation-mobile ul li{
  text-transform: uppercase;
  color: var(--cinzaMeioEscuro) ;
 margin: 4px;
  padding: 10px 10px !important;
}
.navigation-mobile ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
.navigation-mobile ul li:hover{
  color: #fff!important ;
  background: var(--azul) !important;
  padding: 10px 10px !important;
}



}