@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;
}

/* Container padrão */
.container {
  width: 80%;
  margin: auto;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2 !important;
}

@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;
}

@media(min-width: 769px) {
  header .container {
    position: relative;
  }
}

@media(max-width: 768px) {

  header .container {
    width: 75%;
    grid-template-columns: 30% 70%;
  }

}

/* 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;
}

@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-color: #1f2229;
  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 9.5vw;
  z-index: 99;
}

.banner h2 {
  font-size: 3.5vw;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Roboto Condensed";
  line-height: 1.3;
}

.banner b {
  font-weight: 600;
  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.2;
  letter-spacing: 0.2px;
  text-align: 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: 0.8vw;
}


@media(max-width: 768px) {
  .btn {
    font-size: 4vw;
    width: 100%;
    border-radius: 1vw;
    margin-top: 2vh;
  }
}

/* Serviços */
.servicos {
  position: relative;
  background: #1F2128;
  color: white;
  text-align: center;
  padding: 8vh 0;
  overflow: hidden;
}

.servicos .circuito {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  transform: translateY(-50%);
  object-fit: cover;
  object-position: center;
}

.servicos .container {
  position: relative;
  z-index: 1;
}

.servicos h6 {
  color: #029fbd;
  text-align: center;
  font-family: "Open Sans";
  font-size: 0.8vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 150% */
}

.servicos h2 {
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 2.1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.servicos .cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 2vw;
  padding: 0 8vw;

  margin: 4vh 0;
}

.card img {
  width: 120px;
  flex-shrink: 0;
  margin-top: 20px;
}

.card {
  background: #2a2d35;
  border-radius: 6px;
  width: 100%;
  padding: 8px 12px;
  -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);
}

.card h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 2.1vw;
  font-style: normal;
  margin-bottom: 20px;
}

.card p {
  display: flex;
  flex-shrink: 0;
  color: #a0a4a2;
  font-family: "Open Sans";
  font-size: 0.75vw;
  font-style: normal;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 10px;
  text-align: center;
}

.card a {
  display: block;
  color: #029fbd;
  text-align: center;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
}

/* Sobre nós */

.sobre {
  display: flex;
  background: #029fbd;
  padding: 0 8vw;
  color: white;
  position: relative;
}

.sobre .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  height: 100%;
}

.sobre .text {
  padding: 5vh 0;
  padding-right: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.sobre h2 {
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: 2.1vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}

.sobre small {

  color: #FFF;
  font-family: "Open Sans";
  font-size: 1.4vh;
  font-weight: 400;
  line-height: 1.2;

}

@media(max-width: 768px) {
  .sobre small {
    font-size: 0.8vw;
    margin-top: 4vh;
  }
}

.sobre p {
  color: #fff;
  font-family: "Open Sans";
  font-size: 0.8vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.sobre .image {
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

.sobre .image img {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 50%;

  object-fit: cover;
  transform: translateY(-50%);
}

.stats {
  display: flex;
  gap: 20px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 0.8vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2px;
}

.stats div {
  padding: 20px;
  border-radius: 8px;
  margin-top: 8vh;
}

.stats strong {
  font-size: 3vw;
  display: block;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Clientes */



.clientes {
  text-align: center;
  padding: 6vh 0;
  z-index: 997;
  position: relative;
  background: #fff;
}

.clientes h2 {
  color: #1f2128;
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 2.2vw;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.clientes p {
  color: #a0a4a2;
  text-align: center;
  font-family: "Open Sans";
  font-size: 0.8vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 150% */
  letter-spacing: 0.2px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.clientes .logos img {
  width: 180px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}


.clientes .logos img:hover {
  transform: scale(1.1);
}

.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;

  }

}



.container-clientes img.ativo {
  display: block;
  /* 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: 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;
  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: 0.8vw;
  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: 0.8vw;
  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;
}




















/* 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 a {
  text-decoration: none;
  color: #FFF;
}

.footer-section .fa-angle-right {
  color: #029FBD;
}

.footer-section-logo p {
  margin-left: 50px;
}

.footer-section {
  font-size: 0.8vw;
}

.footer-section p i {
  font-size: 0.9vw;
  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.5vw;
  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: 18px;
  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: 0.8vw;
}

/* Responsividade */
@media (max-width: 1024px) {
  .banner h2 {
    font-size: 4vw;
  }

  .banner p {
    font-size: 0.8vw;
  }

  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: 20px;
  }

  header .logo {

    height: 100%;
    width: 100%;
    max-width: 100%;

    object-fit: contain;
    object-position: left;
    position: relative;
    z-index: 999;

  }

  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: 16px;
  }

  .sobre .stats {
    font-size: 10px;
  }

  .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: 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: 4vw;
  }

  .clientes h2 {
    font-size: 4vh;
  }

  .clientes p {
    width: 90%;
    font-size: 2vh;
    line-height: 1.3;
    margin-left: 5%;
  }

  .clientes .logos img {
    width: 130px;
  }

  .clientes .logos {
    display: grid;
    padding: 0 5%;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    justify-content: center;
  }

  .banner {
    height: 400px;
  }

  .banner h2 {
    font-size: 4.3vh;
  }

  .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 {
    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;
}

@media(max-width: 768px) {

  .barToHide {

    grid-column-end: 3;

  }

}

.subTitleHowToDo {
  font-size: 1.7vh;
  font-family: "Roboto Condensed";
  color: #029FBD;
  width: 100%;
  text-align: center;
}

.titleHowToDo {
  color: #FFF;
  font-size: 4vh;
  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: 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;

}

.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;
}

.setaEsquerda {
  left: 2%;
}

.setaDireita {
  right: 2%;
}


@media(max-width: 768px) {

  .footer-section ul li {
    margin-bottom: 5px;
    color: #fff;
    font-family: Poppins;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
  }

  .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;
  }



  .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;
  }

  .stats strong {
    font-size: 8vw;
    display: block;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .footer-section h3 {
    font-size: 6vw;
    margin-bottom: 10px;
    font-family: "Open Sans";
    font-weight: 550;
  }

  .contact-item {
    font-size: 4vw;
  }

  .servicos h2 {
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 6vw;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
  }

  .servicos h6 {
    color: #029fbd;
    text-align: center;
    font-family: "Open Sans";
    font-size: 4vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
  }
}





@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;
    }
    
    
}