@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: 0.8vw;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

/*Section padrão*/
section {
  width: 100% !important;
  float: left !important;
}

/* Container padrão */
.container {
  width: 80%;
  margin: auto;
}

/* 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;
  position: relative;
  z-index: 999;
}

@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: 0.8vw;
  font-weight: 300;
  text-decoration: none;
  font-size: 1vw;
}

@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;
}

.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/sobre-banner.webp") no-repeat center center/cover;
  height: 60vh;
  position: relative;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: 50% 20%;
}

.banner .container {
  position: relative;
}

.banner h2 {
  font-size: 3.5vw;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Roboto Condensed";
}

.banner span {
  font-size: 72px;
  color: #00bcd4;
  font-family: "Roboto Condensed";
}

.banner p {
  color: #a0a4a2;
  font-family: "Open Sans";
  font-size: 0.8vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2px;
  text-align: left;
}

.btn {
  width: 14vw;
  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: 0.8vw;
}

@media(max-width: 768px) {
  .btn {
    width: 100%;
    margin-top: 2vh;
    font-size: 4vw;
  }
}

@media(max-width: 768px) {
  .sobre h1 {
    font-size: 4vw;
  }
}

@media(max-width: 768px) {
  .subTitleHowToDo {
    font-size: 6vw;
    font-family: "Roboto Condensed";
    color: #029FBD;
    width: 100%;
    text-align: center;
  }
}

@media(max-width: 768px) {
  .btn {
    font-size: 4vw;
  }
}

/* Sobre nós */
.sobre {
  display: flex;
  background: #1f2229;
  padding: 50px 0;
  color: white;
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

@media(max-width: 768px) {
  .sobre {
    padding-bottom: 0px;
  }
}

.sobre .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.container-sobre {
  margin-left: 100px;
  position: relative;
  z-index: 1;
}

@media(max-width: 768px) {
  .container-sobre {
    padding: 3vh 8vw;
    margin-left: 0px;
  }
}

.sobre h1 {
  font-size: 1.8vw;
  font-weight: bold;
  z-index: 1;
}

.sobre h2 {
  color: #029fbd;
  font-size: 1.5vw;
  margin-bottom: 2vh;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-top: 20px;
  z-index: 1;
}

.sobre p,
.sobre ul {
  color: #a0a4a2;
  font-size: 0.8vw;
  line-height: 1.5;
  z-index: 1;
}

@media(max-width: 768px) {

  .sobre p,
  .sobre ul {

    font-size: 1.7vh;

  }

}

.sobre ul {
  list-style-type: disc;
  margin-left: 20px;
  z-index: 1;
}

.circuito-sobre {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  transform: translateY(-50%);
  object-fit: cover;
  object-position: center;
}

.sobre .image {
  width: 150%;
  display: flex;
  z-index: 1;
}

.sobre .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Evita distorção e mantém a proporção */
}

/* Clientes */

.clientes {
  text-align: center;
  padding: 50px 0;
}

.clientes h2 {
  color: #1f2128;
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.clientes p {
  color: #a0a4a2;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 150% */
  letter-spacing: 0.2px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.clientes .logos img {
  width: 150px;
  height: px;
  flex-shrink: 0;
}


.clientes .logos {
  display: grid;
  padding: 0 5%;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  justify-content: center;
}

/* serviços 2 */

.servicos2 {
  padding: 20px 0;
  position: relative;
  background: #1f2229;
  color: white;
  text-align: center;
  padding: 50px 0;
  overflow: hidden;
}

.servicos2 h6 {
  color: #029fbd;
  text-align: center;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.servicos2 h2 {
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.servicos2 .cards2 {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 100px;
  gap: 25px;
}

.card2 img {
  width: 120px;
  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: 400px;
  height: 400px;
  flex-shrink: 0;
}

.card2 h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 25px;
  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: 20px;
  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: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.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-top: 80px;
  margin: auto;
  text-decoration: none;
}

/* 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: 0.8vw;
}

.footer-section p i {
  font-size: 1.3vh;
  color: #029fbd;
}

.footer-section p {
  margin-bottom: 1.2vh;
}

.footer-section {
  text-align: left;
}

.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 */
}

.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.3vw;
  margin-bottom: 10px;
  font-family: "Open Sans";
  font-weight: 550;
}

.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;
}

@media (max-width: 768px) {
  .social-icons {
    display: flex;
  }
}

.social-icons img {
  width: 60px;
  height: 50px;
  object-fit: contain;
}

.cnpj {
  font-weight: 500;
  font-size: 0.8vw;
}

@media (max-width: 768px) {
  .cnpj {
    font-weight: 500;
    font-size: 0.8vw;
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .banner h2 {
    font-size: 40px;
  }

  .banner p {
    font-size: 18px;
  }

  nav ul {
    gap: 15px;
  }
}



@media (max-width: 768px) {
  .footer-section * {
    text-align: center;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: unset;
    right: 40px;
  }

  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: 3.5vh;
    margin-bottom: 2vh;
  }

  .sobre p {
    font-size: 1.7vh;
  }

  .sobre .stats {
    font-size: 10px;
  }

  .sobre .image img {
    display: none;
  }

  .servicos .cards .card h3 {
    font-size: 3vh;
  }

  .servicos .cards .card p {
    font-size: 1.7vh;
  }

  .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: 22px;
  }

  .card2 p {
    font-size: 2vh;
  }

  .clientes h2 {
    font-size: 4vh;
  }

  .clientes p {
    width: 90%;
    font-size: 2vh;
    line-height: 1.3;
    margin-left: 5%;
  }

  .clientes .logos img {
    width: 130px;
  }

  .banner {
    height: 400px;
  }

  .banner h2 {
    font-size: 4.3vh;
    line-height: 1.2;
  }

  .banner p {
    font-size: 2vh;
  }

  .servicos .cards {
    align-items: center;
    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: 30px;
  }

  .trajetoria .etapa.space p {
    font-size: 12px;
    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 {
    width: 100%;
    margin: 0 0 40px 0;
    text-align: center;
    font-size: 4vw;
  }

  @media (max-width: 768px) {
    .footer-section-logo p {
      width: 100%;
      margin: 0 0 40px 0;
      text-align: center;
      font-size: 4vw;
    }
  }

  .footer-section-logo img {
    width: 250px;
  }

  footer .container {
    display: grid;
    justify-items: center;
    align-items: center;
  }

}

.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: 1.6vh;
  color: #dbdbdb;
  margin: 0 0 7vh 0;
}

.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;
  grid-column-end: 3;
}

.subTitleHowToDo {
  font-size: 0.8vw;
  font-family: "Roboto Condensed";
  color: #029fbd;
  width: 100%;
  text-align: center;
}

.titleHowToDo {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 400;
  font-family: "Roboto Condensed";
  text-align: center;
}

.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: 60vh;
  position: sticky;
  background-color: #029fbd;
  border-radius: 0.12vw;
  top: 0vh;
  margin-top: -30vh;
}

.left {
  text-align: right;
  grid-column-start: 1;
  grid-column-end: 2;
  border-right: 3px #029fbd solid;
  justify-self: end;
}

.left p {
  font-size: 0.8vw;
}

.right {
  grid-column-start: 3;
  grid-column-end: 4;
  border-left: 3px #029fbd solid;
  justify-self: start;
}

.right p {
  font-size: 0.8vw;
}

.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;
}

.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 {
  display: none;
}

.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;
  }

  @media (max-width: 768px) {
    .titleHowToDo {
      color: #fff;
      font-size: 6vw;
      font-weight: 400;
      font-family: "Roboto Condensed";
      text-align: center;
    }
  }

  @media(max-width: 768px) {
    .sobre h1 {
      font-size: 6vw;
      font-weight: bold;
      z-index: 1;
    }
  }

  .desktop {
    display: none;
  }

  .smartphone {
    display: block;
  }

  .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;
  }

  @media(max-width: 768px) {
    .subTitleHowToDo {
      font-size: 6vw;
      font-family: "Roboto Condensed";
      color: #029FBD;
      width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .boxToTextCardToDo p {
      font-size: 5vw;
    }
  }

  @media (max-width: 768px) {
    .footer-section h3 {
      font-size: 4vw;
      margin-bottom: 10px;
      font-family: "Open Sans";
      font-weight: 550;
    }
  }

  @media (max-width: 768px) {
    .contact-item {
      font-size: 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;
    }
    
    
}