@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1vw;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

/* Container padrão */
.container {
  width: 100%;
  margin: auto;
}

@media(max-width: 768px){

  .container {
    width: 100%;
  }

}

/* Header */
header .logo {
  height: 58%;
  max-width: 7vw;
  
  object-fit: contain;
  object-position: left
}

header {
  position: relative;
  background: #1f2229;
  padding: 2.5vh 0;
  color: white;
}

header .container {
    width: 57vw;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 999;
    position: relative;
}

@media(max-width: 768px){
    
  header .container {
    width: 75%;
    grid-template-columns: 30% 70%;
    position: unset;
  }

}

/* Logo */
.circuito-logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

.nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  grid-column-gap: 2vw;
  justify-content: center;
  margin-right: -1vw;
}

.nav ul li a {
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: 1vw;
  font-weight: 300;
  text-decoration: none;
}

@media(max-width: 768px){
  .nav ul li a {
    font-size: 4vw;
  }
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 20px;
}

.nav ul li a:hover {
  color: #029fbd;
  text-decoration: underline;
}

/* Botão de Contato */
.btn-contato {
  display: flex;
  padding: 1vh 2vw;
  border-radius: 6px;
  background: #029fbd;
  color: #222;
  text-align: center;
  font-family: "Open Sans";
  font-size: 1vw;
  margin-left: 5vw;
  text-decoration: none;
}

@media(max-width: 768px){
  .btn-contato {
    font-size: 4vw;
  }
}

.btn-contato:hover {
  background: #027a99;
}

/* Menu Toggle - Apenas no mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Banner */
.banner {
  background: url("../img/facilities-banner.webp") no-repeat center center/cover;
  height: 73vh;
  position: relative;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.banner .container {
  position: relative;
  padding: 0 7.5vw;
}

@media(max-width: 768px){
  .banner .container {
    padding: 0 5vw;
  }
}

.banner h1 {
  font-size: 3.5vw;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Roboto Condensed";
  line-height: 1;
}

.banner b {
  font-weight: 600;
  color: #00bcd4;
  font-family: "Roboto Condensed";
}

.banner p {
  color: #a0a4a2;
  font-family: "Open Sans";
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-align: left;
}

.banner .btn {
  width: auto;
  float: left;
}

.btn {
  width: 12vw;
  height: auto;
  padding: 1vh;
  text-align: center;
  display: grid;

  border: 2px solid #029fbd;
  color: #ffffff;
  padding: 11.56px 15px 11.94px 26px;
  border-radius: 6px;
  margin-top: 50px;
  text-decoration: none;
  font-size: 1vw;
}


@media(max-width: 768px) {
  .btn {
    font-size: 4vw;
    width: 100%;
    border-radius: 1vw;
    margin-top: 2vh;
  }
}

/* Sobre nós */
.sobre {
  display: flex;
  background: #1f2229;
  padding: 50px 0;
  color: white;
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}



.sobre .container {
  width: 100%;
  display: grid;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 8vw;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5%;
}

.container-sobre {
  position: relative;
  z-index: 1;
  grid-column-start: 2;
  padding: 0;
}

.sobre h2 {
  color: #029fbd;
  font-size: 2vw;
  font-style: Inter;
  word-wrap: break-word;
  line-height: 1.1;
}

@media(max-width: 768px){
  .sobre h2 {
    font-size: 6vw;
  }
}


.sobre .missao {
  grid-column-start: 2;
  margin-bottom: 20px;
  z-index: 1;

}



.sobre p, .sobre ul {
  color: #a0a4a2;
  font-family: Inter;
  font-size: 1vw;
  line-height: 1.5;
  z-index: 1;
}

.sobre ul {
  list-style-type: disc;
  margin-left: 20px;
  z-index: 1;
  line-height: 2;
}

.circuito-sobre {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  transform: translateY(-50%);
  object-fit: cover;
  object-position: center;
}

.sobre .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sobre .image img {
  width: 50%;
  height: 100%;
  left: 0;
  object-fit: cover; /* Evita distorção e mantém a proporção */
}

.img-sobre {
  width: 20px;
  height: auto;
}

.valores {
  display: flex;
  flex-direction: column;
  justify-content: column;
}

.btn-sobre {
  background: transparent;
  border: 2px solid #029fbd;
  color: #ffffff;
  padding: 11.56px 15px 11.94px 26px;
  border-radius: 6px;
  display: flex;
  margin-top: 50px;
  text-decoration: none;

  width: 10vw;
  min-width: 200px;
  height: auto;
  padding: 1vh 0;
  text-align: center;
  display: grid;

  font-size: 1vw;

}

@media(max-width: 768px) {

  .btn-sobre {
    width: 95%;
    font-size: 4vw;
    border-radius: 1vw;
    margin-left: 0px;
  }
}



/* Serviços */
.servicos {
  position: relative;
  background: #1f2229;
  color: white;
  text-align: center;
  padding: 6vh 9.5vw;
  overflow: hidden;
}

@media(max-width: 768px){

  .servicos {
    padding: 0 9.5vw 6vh 9.5vw;
    margin-top: -1px;
  }

}



.servicos .container {
  position: relative;
  z-index: 1;
}

@media(max-width: 768px){

  .servicos .container {
    max-width: 100%;
    padding: 0;
  }
  

}

.servicos h6 {
  color: #029fbd;
  text-align: center;
  font-family: Inter;
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.servicos h2 {
  text-align: center;
  font-family: Inter;
  font-size: 2.1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  line-height: 1.2;
}

.servicos .firstTitle {
  text-align: left;
  margin-bottom: 2vh;
}

@media(max-width: 768px){
  .servicos .firstTitle {
    font-size: 6vw;
  }
}

.servicos .firstP {
  text-align: left;
}

.servicos .lastP {
  text-align: left;
  margin-top: 2vh;
}


.servicos .cards {
  display: flex;
  justify-content: space-between; 
  gap: 0; 
}

.card {
  flex: 1; 
  max-width: 100%; 
  height: auto; 
  padding: 3vh 20px;
  box-sizing: border-box; 
  margin-bottom: 2vh;
  -webkit-box-shadow: 0px 6px 11px -9px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 6px 11px -9px rgba(0,0,0,0.75);
box-shadow: 0px 6px 11px -9px rgba(0,0,0,0.75);
}



.cards .card.last {
  border-radius: 0 0.2vw 0.2vw 0;
}


.cards .card.first {
  border-radius: 0.2vw 0 0 0.2vw;
}

@media(max-width: 768px){

  .cards .card.last, .cards .card.first, .cards .card {
    border-radius: 1vw;
  }
  
}


.card p {
  text-align: left; 
  word-spacing: normal; 
  white-space: normal; 
  font-size: 0.75vw;
  margin-bottom: 1.4vh;
}




.titulo {
  position: relative;
  display: inline-block;
  padding-top: 40px;
}

.titulo h3 {
  color: #fff;
  font-family: Inter;
  font-size: 1vw;
  font-style: normal;
  text-align: left;
  margin-left: 10px;
  margin-bottom: 20px;
}

.titulo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #029fbd;
  margin-top: 25px;
  margin-left: 10px;
}

.btn-servico {
  background: transparent;
  border: 2px solid #029fbd;
  color: #ffffff;
  padding: 11.56px 15px 11.94px 26px;
  border-radius: 6px;
  display: flex;
  width: 175px;
  height: 47px;
 margin: 40px auto;
  text-decoration: none;
}
.btn-servico1 {
  background: transparent;
  border: 2px solid #029fbd;
  color: #ffffff;
  padding: 11.56px 15px 11.94px 26px;
  border-radius: 6px;
  display: flex;
  margin: 40px auto;
  text-decoration: none;

  width: 45vw;
  min-width: 200px;
  height: auto;
  padding: 1vh 0;
  text-align: center;
  display: grid;

  font-size: 1vw;
}

@media(max-width: 768px){
    
    .btn-servico1 {
          
        font-size: 4vw;
        width: 100%;
        margin-left: 0px;
        
    }
    
}

/* Clientes */

.clientes {
  text-align: center;
  padding: 5vh 8vw;
  position: relative;
}



.btn-clientes {
  width: auto;
  height: auto;
  padding: 1vh;
  text-align: center;
  display: grid;
  border: 2px solid #029fbd;
  color: #1f2229;
  padding: 1vh 2vw;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1vw;
  margin: 5vh 0 0 0;
  justify-self: center;
}

@media(max-width: 768px){
  .btn-clientes {
    margin-left: 0px;
    transform: translateX(0px);
    width: 100%;
    padding: 1vh 5vw;
    font-size: 3.7vw;
  }
}

.clientes .logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11vw, 11vw));
  grid-column-gap: 0.5%;
  justify-content: center;
  justify-items: center;
  width: 90%;
  margin-left: 5%;
  margin-bottom: 50px;
}

.clientes h2 {
  color: #1f2128;
  text-align: left;
  font-family: "Roboto Condensed";
  font-size: 2.2vw;
  font-style: normal;
  font-weight: 400;
}

.clientes p {
  color: #a0a4a2;
  text-align: left;
  font-family: "Open Sans";
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.clientes .logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}


.clientes .logos img:hover {
  transform: scale(1.1);
}

@media(max-width: 768px){

  .boxToScroll {
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 5vh;
  }

  .clientes .logos {
    width: 300vw;
    display: block;
  }

  .clientes .logos img {
    width: 37.5vw;
    margin-right: 5vw;
    float: left;
  }

}


.container-clientes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 6.5%;
  grid-row-gap: 7vh;
  max-width: 100%;
  margin: 0 auto; 
  justify-content: center;
  align-items: center; 
}

.container-clientes img {
  display: none; 
  width: 100%;
  height: 40vh;
  object-fit: cover;
}

@media(max-width: 768px){

  .container-clientes {
    grid-row-gap: 3vh;
  }

  .container-clientes img {

    height: 20vh;

  }

}

.desabilitado {
    display: none !important;
}

.container-clientes img.ativo {
  display: block !important; /* Apenas as imagens ativas são exibidas */
}


.galeria {
  display: none;
}

.galeria.ativo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}




/* serviços 2 */

.servicos2 {

  grid-template-columns: 1fr;
  grid-column-gap: 3%;
  display: grid;

  padding: 20px 0;
  position: relative;
  background: #1F2128;
  color: white;
  text-align: center;
  padding: 9vh 22vw 3vh 22vw;
  overflow: hidden;
  z-index: 2;
}

.servicos2 .container {

  width: 100%;

  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3%;
  display: grid;

}

@media(max-width: 768px){

  .servicos2 .container {

    grid-template-columns: 1fr;
    grid-row-gap: 3vh;

  }


}

.servicos2 h6 {
  color: #029fbd;
  text-align: center;
  font-family: "Open Sans";
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.servicos2 h2 {
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 2.1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

@media(max-width: 768px){

  .servicos2 h2 {
    width: 90%;
    margin-left: 5%;
    font-size: 6vw;
    text-align: left;
  }
  
}

.servicos2 .cards2 {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  gap: 25px;
}

.card2 img {
  width: 16vh;
  flex-shrink: 0;
  margin-top: 20px;
}

.card2 {
  background: transparent;
  border: 2px solid (255, 255, 255, 0.5); /* Borda semi-transparente */
  border-radius: 6px;
  border: 1px solid #029fbd;
  background: #1f2229;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  padding: 2vh 1vw;
}

.card2 h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 1.5vw;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.card2 p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #a0a4a2;
  font-family: "Open Sans";
  font-size: 1vw;
  font-style: normal;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.card2 a {
  display: block;
  color: #029fbd;
  text-align: center;
  font-family: "Open Sans";
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}







/* Container Principal */
.eletrica-container {
  height: auto;
  width: 100%;
  padding: 3vh 7.5vw;
  background-color: #FFF;
  float: left;
}


.eletrica-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  padding: 10vh 7.5vw
}

@media(max-width: 768px){

  .eletrica-grid-wrapper {
    padding: 0 5vw 5vh 5vw;
  }

}

/* Coluna da Esquerda: Introdução */
.eletrica-intro-section {
  text-align: center;
}

.eletrica-titulo-principal {
  font-size: 8vw; /* Tamanho para mobile */
  font-weight: 800;
  line-height: 1.1;
  color: #1F2128;
}

@media(max-width: 768px){
  .eletrica-titulo-principal {
    font-size: 6vw;
  }
}

.eletrica-texto-descricao {
  font-size: 4vw; /* Tamanho para mobile */
  color: #4A5568;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Botão CTA */
.eletrica-cta-button {
  margin-top: 2rem;
  background-color: #029fbd;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s;
  width: fit-content;
  vertical-align: middle;
  font-size: 1vw;
}

@media(max-width: 768px){
  .eletrica-cta-button {
    font-size: 4vw;
    width: 90%;
  }

}

.eletrica-cta-button:hover {
  background-color: #028fa9;
}

/* Coluna da Direita: Grade de Cards */
.eletrica-cards-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.eletrica-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
  text-align: left;
}

.eletrica-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.eletrica-card-icon-wrapper {
  background-color: #e6f5f8;
  border-radius: 9999px;
  padding: 1rem;
  margin-bottom: 1rem;
  width: fit-content;
}

.eletrica-card-icon-wrapper svg {
  height: 2rem;
  width: 2rem;
  color: #029fbd;
}

.eletrica-titulo-card {
  font-size: 4.5vw; /* Tamanho para mobile */
  font-weight: 700;
  color: #1F2128;
  line-height: 1.3;
}

.eletrica-texto-card {
  font-size: 3.5vw; /* Tamanho para mobile */
  color: #4A5568;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Media Queries para Responsividade */
@media (min-width: 768px) {

  .eletrica-cards-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
    .eletrica-cta-button{
        font-size: 1vw;
    }
  .eletrica-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: center; /* Alinha verticalmente as colunas do grid */
  }
  .eletrica-intro-section {
    text-align: left;
  }
  .eletrica-titulo-principal {
    font-size: 3vw;
  }
  .eletrica-texto-descricao {
    font-size: 1vw;
  }
  .eletrica-titulo-card {
    font-size: 1.3vw;
  }
  .eletrica-texto-card {
    font-size: 1vw;
  }
}


/* --- Estilos da Seção Principal --- */
/* Define o container principal da seção, com a cor de fundo escura e preenchimento interno. */
.sobre-inove-consulting-section {
  background-color: #1F2128;
  padding: 5vh 7.5vw;
  width: 100%;
  overflow: hidden; /* Garante que o conteúdo float não vaze */
}

/* --- Coluna da Imagem --- */
/* Container para a imagem. Em mobile, ocupa toda a largura. */
.sobre-inove-image-column {
  width: 100%;
  margin-bottom: 5vh;
}

/* Estiliza a imagem para ser responsiva e ter bordas arredondadas. */
.sobre-inove-image-column img {
  width: 100%;
  height: 50vh;
  padding: 18.5vh 5vw;
  object-fit: contain;
  object-position: center;
  border-radius: 2vw;
}


@media(max-width: 768px){
  .sobre-inove-image-column img {
    height: 30vh;
    padding: 7vh 2vw;
  }
}

/* --- Coluna do Texto --- */
/* Container para todo o conteúdo de texto. */
.sobre-inove-text-column {
  width: 100%;
}

/* Estiliza o título principal com a cor de destaque e o line-height especificado. */
.sobre-inove-text-column h2 {
  color: #029FBD;
  font-size: 7vw; /* Tamanho da fonte responsivo com a largura da tela */
  line-height: 1.3;
  margin-bottom: 2vh;
}

/* Estiliza o parágrafo com a cor de texto padrão e o line-height especificado. */
.sobre-inove-text-column p {
  color: #a0a4a2;
  font-size: 4vw; /* Tamanho da fonte responsivo */
  line-height: 1.5;
  margin-bottom: 2vh;
}

/* Estiliza o subtitulo abaixo do H2 */
.sobre-inove-text-column .sobre-inove-subheading {
  font-size: 4.5vw;
  line-height: 1.4;
  margin-bottom: 3vh;
}


/* --- Botão (Call to Action) --- */
/* Estiliza o botão principal com cores, preenchimento e bordas arredondadas. */
.sobre-inove-cta-button {
  background-color: #029FBD;
  color: #FFFFFF;
  border: none;
  border-radius: 0.25vw;
  padding: 1vh 2vw;
  font-size: 1vw;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;

}



@media(max-width: 768px){

  .sobre-inove-cta-button {
    width: 90%;
    margin-left: 5%;
    font-size: 4vw;
    text-align: center;
    border-radius: 6px;
  }
  
}


/* --- Media Query para Desktop --- */
/* Aplica estilos para telas maiores que 769px. */
@media (min-width: 769px) {
  /* Ajusta o preenchimento da seção para desktop. */
  .sobre-inove-consulting-section {
    padding: 5vh 8vw;
  }

  /* Define a coluna da imagem para flutuar à esquerda com metade da largura. */
  .sobre-inove-image-column {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0;
  }

  /* Define a coluna de texto para flutuar à esquerda com metade da largura. */
  .sobre-inove-text-column {
    float: left;
    width: 48%;
  }
  
  /* Ajusta o tamanho da fonte do título para desktop. */
  .sobre-inove-text-column h2 {
    font-size: 2.5vw;
  }

  /* Ajusta o tamanho da fonte do parágrafo e da lista para desktop. */
  .sobre-inove-text-column p {
    font-size: 1vw;
  }
  
  .sobre-inove-text-column .sobre-inove-subheading {
    font-size: 1.5vw;
  }

  /* Ajusta o tamanho da fonte e o preenchimento do botão para desktop. */
  .sobre-inove-cta-button {
  padding: 1vh 2vw;
    font-size: 1vw;
    border-radius: 0.25vw;
  }
}



.googleMaps {

  height: 70vh;
  width: 80%;
  border-radius: 0.5vw;
  margin: 3vh 10%

}

.petrol {
  color: #029FBD;
}


.nossaLocalizacao {
  padding: 5vh 7.5vw;
  margin-top: 0px;

}

.nossaLocalizacao h2 {
    margin: 0 0 3.5vh 0
  }

  @media(max-width: 768px){

    .nossaLocalizacao p {
      text-align: left;
    }

    .nossaLocalizacao .last {
      margin-top: 2vh;
    }

    .googleMaps {
      height: 60vh;
      border: 0;
      margin: 3vh 0;
      width: 100%;
      border-radius: 6px;
    }


  }



































































/* Footer */

footer {
  color: white;
  padding: 20px 0;
  background: #1f2229;

}

footer .container {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
  max-width: 65vw;
  margin-bottom: 40px;
  margin-top: 50px;
}

.footer-section-logo p {
  margin-left: 50px;
}

.footer-section a {
  text-decoration: none;
  color: #FFF;
}

.footer-section .fa-angle-right {
  color: #029FBD;
}

.footer-section {
  font-size: 1vw;
}

.footer-section p i {
  font-size: 0.9vw;
  color: #029FBD;
}

.footer-section p {
  margin-bottom: 1.2vh;
  line-height: 1.5;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Espaço entre o ícone e o texto */
  margin-bottom: 8px;
  /* Espaçamento entre os itens */
}

@media(max-width: 768px){
  .contact-item {
    font-size: 4vw;
  }
}

.img-footer {
  width: 20px;
  /* Tamanho dos ícones */
  height: auto;
}

.logo img {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
}

.footer-section h3 {
  font-size: 1.5vw;
  margin-bottom: 10px;
  font-family: "Open Sans";
  font-weight: 550;
  line-height: 1.3;
}

@media(max-width: 768px){

  .footer-section h3 {
    font-size: 6vw;
    margin-top: 3vh;
  }

}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
  color: #fff;
  font-family: Poppins;
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
}

.social-icons {
  display: flex;
}

.social-icons img {
  width: 60px;
  height: 50px;
  object-fit: contain;
}

.cnpj {
  font-weight: 500;
  font-size: 1vw;
}

/* Responsividade */
@media (max-width: 1024px) {
  .banner h1 {
    font-size: 4vw;
  }

  .banner p {
    font-size: 1vw;
  }

  nav ul {
    gap: 15px;
  }
}

@media (max-width: 768px) {

  body{
    font-size: 4vw;
  }

  .footer-section * {
    text-align: center;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: unset;
    right: 40px;
    font-size: 6vw;
  }

  header .logo {

    height: 100%;
    width: 100%;
    max-width: 100%;

    object-fit: contain;
    object-position: left;

  }

  header .circuito-logo {
    display: none;
  }

  .btn-contato {
    display: none;
  }

  .nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1f2229;
    text-align: center;
    padding: 15px 0;
  }

  .nav ul li {
    margin: 10px 0;
  }

  /* Estilizando para quando ativar o menu */
  .nav.active ul {
    display: flex;
    margin-top: 16px;
  }

  nav ul {
    flex-direction: column;
    padding-top: 10px;
  }

  .nav {
    z-index: 1000;
  }

  .sobre .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 3vh;
    padding: 0px;
  }

  .sobre .text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .sobre h2 {
    font-size: 8vw;
    margin-bottom: 2vh;
  }

  .sobre p {
    font-size: 4vw;
  }

  .sobre .stats {
    font-size: 3vw;
  }

  .sobre .image {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    grid-row-start: 1;
    margin-top: 0;
    display: grid;
    grid-template-rows: auto;
    grid-row-gap: 2vh;
  }

  .sobre .image img {
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    top: 0;
    transform: unset;
    margin-top: 0px;
  }

  .image img {
    width: 100%;
    height: 50px;
    margin-top: 50px;
  }

  .servicos .cards .card h3 {
    font-size: 5vw;
  }

  .servicos .cards .card p {
    font-size: 3.5vw;
  }

  .servicos2 {
    padding: 7vh 0;
  }

  .container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
  }

  .cards2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* Espaçamento entre os cards */
  }

  .card2 h3 {
    font-size: 5vw;
  }

  .card2 p {
    font-size: 4vw;
  }

  .clientes h2 {
    text-align: left;
    font-size: 6vw;
    margin-bottom: 2vh;
  }

  .clientes p {
    width: 90%;
    font-size: 4vw;
    line-height: 1.3;
    margin-left: 5%;

  }

  @media(max-width: 768px){
    .clientes p {
      text-align: left;
      width: 100%;
      margin: 0 0 2vh 0;
    }    
  }

  .banner {
    padding: 5vh 0;
    height: auto;
  }

  .banner h1 {
    font-size: 8.5vw;
  }

  .banner p {
    font-size: 4vw;
  }

  .servicos .cards {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4vh;
    padding: 0px;
  }

  .cnpj {
    margin-bottom: 50px;
  }

  .trajetoria .etapa .caixa {
    display: none;
  }

  .description {
    display: none;
  }

  .year {
    display: none;
  }

  .trajetoria .circuito2 {
    display: none;
  }

  .trajetoria {
    display: grid;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .trajetoria h3 {
    font-size: 6vw;
  }

  .trajetoria .etapa.space p {
    font-size: 3.5vw;
    text-align: center;
  }

  .trajetoria .etapa {
    grid-template-columns: 1fr !important;
    margin-bottom: 20px;
  }

  .trajetoria .etapa.space {
    margin-top: 20px;
  }

  .trajetoria .etapa.space>div {
    margin: 0;
    margin-left: 25px;
    margin-right: 25px;
  }

  .trajetoria .etapa .caixa {
    display: none;
    margin: 0;
  }

  .trajetoria.card-trajetoria-right {
    margin-top: 20px;
  }

  .footer-section-logo p {
    margin: 0 0 40px 0;
    text-align: center;
  }

  @media(max-width:768px){

    .footer-section-logo p {
      font-size: 4vw;
    }

  }

  .footer-section-logo img {
    width: 250px;
  }

  footer .container {
    display: grid;
    justify-items: center;
    align-items: center;
  }
  
  footer {
      margin-top: -1px;
  }


}

.howToDo {
  height: auto;
  width: 100%;
}

.boxToTextCardToDo {
  height: auto;
  width: 30vw;
  padding: 4vh 5%;
  background-color: #2a2d35;
  -webkit-box-shadow: -1px 1px 14px -8px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: -1px 1px 14px -8px rgba(0, 0, 0, 0.44);
  box-shadow: -1px 1px 14px -8px rgba(0, 0, 0, 0.44);
  align-content: center;
  align-items: center;
  font-size: 1vw;
  color: #DBDBDB;
  margin: 0 0 7vh 0;
  line-height: 1.5;
}


.howToDo {
  width: 100%;
  padding: 0 7.5vw 12vh 7.5vw;
  background-color: #1F2128;
  display: grid;
  grid-template-columns: auto 10px auto;
  grid-column-gap: 5%;
  position: relative;
  z-index: 1;
}

.barToHide {
  height: 28vh;
  width: 100%;
  padding: 14vh 7.5vw;
  background-color: #1F2128;
  position: relative;
  margin-bottom: 5vh;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  z-index: 2;
}

.subTitleHowToDo {
  font-size: 1vw;
  font-family: "Roboto Condensed";
  color: #029FBD;
  width: 100%;
  text-align: center;
  line-height: 1.3;
}

.titleHowToDo {
  color: #FFF;
  font-size: 2.5vw;
  font-weight: 400;
  font-family: "Roboto Condensed";
  text-align: center;
  line-height: 1.3;
}

.barHowToDo {
  width: 10px;
  background-color: #353841;
  border-radius: 0.15vw;
  position: relative;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row: 2 / span 7;
  z-index: 1;
}

@media(max-width: 768px) {}

.barToScrollHowToDo {
  width: 100%;
  height: 80vh;
  position: sticky;
  background-color: #029FBD;
  border-radius: 0.12vw;
  top: 0vh;
  margin-top: -50vh;
}

.left {
  text-align: right;
  grid-column-start: 1;
  grid-column-end: 2;
  border-right: 3px #029fbd solid;
  justify-self: end;
}

.right {
  grid-column-start: 3;
  grid-column-end: 4;
  border-left: 3px #029fbd solid;
  justify-self: start;
}

.c1 {
  grid-row-start: 2;
}

.c2 {
  background-color: unset;

  font-weight: 400;

  border-width: 0px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);

  grid-row-start: 2;
  grid-row-end: 2;

}

.yearTitle {
  color: #029FBD;
  line-height: 1.3;
}

.c3 {
  background-color: unset;

  font-weight: 400;

  border-width: 0px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  grid-row-start: 4;
}

.c4 {
  grid-row-start: 4;
}

.c5 {
  grid-row-start: 6;
}

.c6 {
  background-color: unset;

  font-weight: 400;

  border-width: 0px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  grid-row-start: 6;
}

.c7 {
  background-color: unset;

  font-weight: 400;

  border-width: 0px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  grid-row-start: 8;
}



.c8 {
  grid-row-start: 8;
}



.desktop {
  display: block;
}


.smartphone,
.smartphoneGrid {
  display: none;
}

.setaEsquerda,
.setaDireita {
  position: absolute;
  top: 29vh;
}

@media(max-width: 768px){
  .setaEsquerda, .setaDireita {
    top: 68vh;
  }
}

.setaEsquerda {
  left: 2%;
}

.setaDireita {
  right: 2%;
}

.setaEsquerda i {
  background-color: #029fbd;
  color: #FFF;
  border-radius: 3vh;
  height: 3vh;
  width: 3vh;
  display: grid;
  align-content: center;
}

.setaDireita i {
  background-color: #029fbd;
  color: #FFF;
  border-radius: 3vh;
  height: 3vh;
  width: 3vh;
  display: grid;
  align-content: center;
}

.closeMenuSmartphone {
  display: none;
}

@media(max-width: 768px) {


  .howToDo {
    grid-template-columns: 90% 10%;
  }

  .boxToTextCardToDo {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: unset;
    width: 100%;
    text-align: right;
  }

  .desktop {
    display: none;
  }

  .smartphone {
    display: block;
  }

  .smartphoneGrid {
    display: grid;
  }

  .left,
  .right {
    border-right: 3px #029fbd solid;
    border-left: 0px;
  }

  .c2 {
    grid-row-start: 2;
  }

  .c6 {
    grid-row-start: 6;
  }


  .closeMenuSmartphone {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 99;
  }

  .closeMenuSmartphone.active {
    display: block;
  }

  footer .container {
    display: grid;
    justify-items: center;
    align-items: center;
  }

  .nossaLocalizacao {

    padding: 5vh 7.5vw;

  }


}






@media(min-width: 769px){
    
    .container.menuDesktop {
        grid-template-columns: auto auto auto;
        grid-column-gap: 3vw;
        justify-content: center;
        justify-items: center;
    }
    
    .menuDesktop #nav {
        display: grid;
        align-items: center;
    }
    
    .menuDesktop .btn-contato {
        margin-left: 0px;
        
    }
    
    .menuDesktop .nav ul li a:hover {
        text-decoration: none;
    }
    
    .menuDesktop .nav ul li a {
        font-size: 0.8vw;
    }
    
    header {
        padding: 0.75vw 0;
    }
    
    .container.menuDesktop .btn-contato {
        padding: 0.3vw 2vw;
        font-size: 0.8vw;
    }
    
    
}