* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins";
}

html {
  overflow-x: hidden !important;
}

.header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
  position: relative;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 8vh;
}

.logo h1 {
  display: none;
}

/* Menu Desktop */
.nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav a,
.desktop-only .lang-dropdown li a {
  font-size: 1em;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #c0392b;
}

/* Idioma */
.language {
  position: relative;
  font-size: 1em;
  cursor: pointer;
}

.lang-selected {
  padding: 8px 12px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  list-style: none;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 160px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lang-dropdown li {
  padding: 10px;
  transition: 0.3s;
}

.lang-dropdown li:hover {
  background: #f3f3f3;
}

.language.show .lang-dropdown {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #2c3e50;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

button {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.bold {
  font-weight: 700;
}

.hero {
  width: 100%;
  display: flex;
  /* padding: 6vw; */
  padding: 2vw 6vw 6vw 6vw;
  background-image: url("assets/hero.webp");
  background-position: 50% 50%;
  background-size: cover;
  height: 100vh;
  flex-flow: row wrap;
  align-items: center;
  /*posiciona horizontal*/
  justify-content: space-between;
  /* Se torna referência para as divs filhas */
  position: relative;

  h2,
  p,
  span {
    color: #F4F4F4;
  }

  .meio {
    /* background-color: blue; */
    display: flex;
    justify-content: center;

    h2 {
      font-size: 3vw;
      text-align: center;
    }
  }

  .textos-hero {
    /* background-color: olivedrab; */
    display: flex;
    justify-content: space-between;

    .esquerda,
    .direita {
      display: flex;

      p {
        font-size: 1.9vw;
        font-weight: 300;
      }
    }

    .esquerda {
      /* background-color: red; */
      width: 26%;
      /* height: 100%; */

      p {
        font-size: 1.9vw;
        font-weight: 300;
      }
    }

  }

  .contato {
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin-top: 18vw; */
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.9vw;
    font-weight: 300;
    /* background-color: yellowgreen; */

    .botoes {

      .whatsapp,
      .email {
        border: none;
        outline: none;
        color: #F4F4F4;
        font-size: 1.2vw;
        font-weight: 600;
        width: 10vw;
        height: 6vh;
        border-radius: 2px;
        transition: 0.2s ease;
      }

      .whatsapp {
        background-color: #25D366;
      }

      .whatsapp:hover {
        background-color: rgba(31, 185, 87, 0.77);
      }

      .email {
        background-color: #162B4D;
      }

      .email:hover {
        background-color: #274980;
      }

    }

  }

}

.sobre-nos {
  display: flex;
  flex-flow: row wrap;

  .capo-fusca,
  .texto-sobre-nos {
    width: 50%;
    height: 120vh;
  }

  .capo-fusca {
    background-image: url("assets/capo-fusca.png");
    background-size: cover;
    /* width: 100vw; */

  }

  .texto-sobre-nos {
    background-color: #162B4D;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 4vw;

    h3,
    p {
      color: #F4F4F4;
    }

    h3 {
      font-size: 3vw;
      letter-spacing: 3px;
    }

    p {
      font-size: 1.4vw;
      font-weight: 300;
    }
  }

  .texto-sobre-nos-mobile {
    display: none;
  }
}

.mvv {
  display: flex;
  flex-flow: row wrap;

  .texto-mvv,
  .lanterna-fusca {
    width: 50%;
    height: 120vh;
  }

  .texto-mvv {
    background-color: #B0B3B8;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 4vw;

    h3,
    p {
      color: #000000;
    }

    h3 {
      font-size: 3vw;
      letter-spacing: 3px;
    }

    p {
      font-size: 1.4vw;
      font-weight: 300;
    }
  }

  .lanterna-fusca {
    /* background-image: url("assets/lanterna-fusca.png"); */
    background-image: url("assets/lanterna-fusca.webp");
    background-size: cover;
    /* width: 48.9vw; */

  }


}

.diferenciais {

  min-height: 100vh;
  min-height: 100svh;
  padding: 2vw 6vw 6vw 6vw;
  background-color: #9E1B1B;

  h3 {
    color: #F4F4F4;
    font-size: 3vw;
    letter-spacing: 3px;
    text-align: center;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;

    .card {
      background-color: #F4F4F4;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }
  }
}

.atuacao-mercado {
  width: 100%;
  /* display: flex;
  flex-direction: column; */
  padding: 7vw;
  background-image: url("assets/containers.png");
  background-position: 50% 50%;
  background-size: cover;
  min-height: 100vh;

  h3,
  p {
    color: #F4F4F4;
    text-align: center;
  }

  h3 {
    font-size: 3vw;
    letter-spacing: 3px;
  }

  .texto-atuacao-mercado {

    p {
      width: 80%;
      max-width: 900px;
      margin: 48px auto;
      text-align: center;
      font-size: 1.6vw;
      font-weight: 400;
    }

  }

}

.secao-contato {
  /* min-height: 100vh;
  min-height: 100svh; */
  display: flex;
  flex-flow: row nowrap;
  min-height: 92vh;

  .volante,
  .form-contato {
    width: 50%;
  }

  .volante {
    background-image: url("assets/volante-vw.webp");
    background-position: center;
    background-size: cover;
    min-height: 92vh;
  }

  .form-contato {
    background-color: #2B2B2B;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 4vw;

    h3 {
      color: #F4F4F4;
      /* font-size: clamp(2rem, 3vw, 3.2rem); */
      font-size: 3vw;
      letter-spacing: 3px;
      margin-bottom: 24px;
      text-align: left;
    }

    .contato-sucesso {
      display: none;
      width: 100%;
      max-width: 380px;
      margin: -8px 0 18px;
      padding: 10px 12px;
      border-radius: 4px;
      background-color: #162B4D;
      color: #F4F4F4;
      font-size: 0.95rem;
      font-weight: 600;
      text-align: center;
    }

    .contato-sucesso.is-visible {
      display: block;
    }

    label {
      color: #F4F4F4;
      display: block;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    form {
      width: 100%;
      max-width: 380px;
    }

    input,
    textarea {
      width: 100%;
      border: 0;
      border-radius: 4px;
      background: #F4F4F4;
      color: #222;
      font-family: "Poppins", sans-serif;
      font-size: 1rem;
      padding: 12px 14px;
      margin-bottom: 24px;
    }

    textarea {
      min-height: 120px;
      resize: none;
    }

    button {

      border: none;
      outline: none;
      color: #F4F4F4;
      background-color: #162B4D;
      font-size: 1.2vw;
      width: 13vw;
      height: 6vh;
      border-radius: 2px;
      transition: 0.2s ease;
    }

    button:hover {
      background: #274980;
    }
  }
}

.footer {
  background-color: #9E1B1B;
  color: #F4F4F4;
  text-align: center;
  padding: 12px 16px 10px;

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;

    p {
      margin: 0;
      line-height: 1.25;
      font-size: 1.2rem;
      font-weight: 500;
    }

    .j-freitas {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 2px;
    }

  }
}

/* Tablet */
@media (max-width: 1000px) {

  header {

    .container {

      .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      }

      .nav.active {
        max-height: 600px;
        padding: 20px 0;
      }

      .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .desktop-only {
        display: none;
      }

      .mobile-only {
        display: block;
      }

      .hamburger {
        display: flex;
      }

      .lang-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        width: 100%;
        text-align: center;
      }

    }

  }

  .hero {

    background-image: url("assets/hero-mobile-2.webp");
    /* background-image: url("assets/hero-mobile.webp"); */

    .meio {
      /* background-color: green; */

      h2 {
        /* font-size: clamp(1.5rem, 7vw, 2.2rem); */
        font-size: 5.2vw;
        line-height: 1.2;
      }

    }

    .textos-hero {

      /* background-color: tomato; */
      margin-bottom: 45vw;

      .esquerda,
      .direita {

        width: 36%;

        p {

          font-size: 2.8vw;
          font-weight: 400;
        }

      }

    }

    .contato {

      width: 100%;
      margin-top: 8vw;

      span {
        font-size: 3.2vw;
      }

      .botoes {
        display: flex;
        gap: 12px;
        justify-content: center;
        width: min(100%, 420px);
      }

      .botoes .whatsapp,
      .botoes .email {
        font-size: 1.2rem;
        font-weight: 600;
        flex: 1;
        min-width: 140px;
        padding: 14px 24px;
      }

    }

  }

  .diferenciais {
    min-height: auto;
    padding: 6vw 5vw;
  }

  .sobre-nos {

    .capo-fusca {
      background-image: url("assets/capo-fusca-mobile.webp");
    }

    .texto-sobre-nos {

      h3 {
        font-size: 6.5vw;
        letter-spacing: 3px;
      }

      p {

        font-size: 2.6vw;
        font-weight: 400;
      }

    }

  }

  .mvv {

    .texto-mvv {

      h3 {
        font-size: 6.5vw;
        letter-spacing: 3px;
      }

      p {

        font-size: 2.6vw;
        font-weight: 500;
      }

    }

    .lanterna-fusca {
      background-image: url("assets/lanterna-fusca-mobile.webp");
    }

  }

  .diferenciais {

    h3 {
      font-size: 6.5vw;
    }

    .cards {
      margin-top: 28px;
      grid-template-columns: repeat(2, 1fr);
    }
    
  }


  .footer .j-freitas {
    font-size: 1.8rem;
  }

  .footer p {
    font-size: 1.2rem;
  }

  .footer p:last-child {
    font-size: 1.05rem;
  }
}

@media (min-width: 993px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 600px) {

  header {

    .container {

      .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      }

      .nav.active {
        max-height: 600px;
        padding: 20px 0;
      }

      .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .desktop-only {
        display: none;
      }

      .mobile-only {
        display: block;
      }

      .hamburger {
        display: flex;
      }

      .lang-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        width: 100%;
        text-align: center;
      }

    }

  }

  .hero {
    background-image: url("assets/hero-mobile.webp");
    flex-direction: column;
    min-height: 100svh;
    height: auto;
    justify-content: flex-start;
    gap: 14px;
    padding: 20px 20px 24px;

    .meio {
      width: 100%;

      h2 {
        /* font-size: clamp(1.5rem, 7vw, 2.2rem); */
        font-size: 7.2vw;
        line-height: 1.2;
      }
    }

    .textos-hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;

      .esquerda {
        width: 100%;
        max-width: 100%;
      }

      .esquerda {

        /* display: none; */
        p {
          text-align: center;
          font-size: clamp(1rem, 5.5vw, 1.25rem);
          line-height: 1.5;
          font-weight: 400;
        }

      }

      .direita {
        display: none;
      }
    }

    .contato {
      margin-top: auto;
      padding-bottom: 18px;

      span {
        font-size: 6vw;
        /* font-size: clamp(1rem, 5vw, 1.2rem); */
        /* font-weight: 400; */
      }

      .botoes {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
      }

      .botoes .whatsapp,
      .botoes .email {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        height: auto;
        padding: 12px 16px;
        font-size: 1.1rem;
        font-weight: 600;
      }
    }

  }

  .sobre-nos {

    .capo-fusca {
      background-image: url("assets/capo-fusca-mobile.webp");
    }

    .texto-sobre-nos {

      h3 {
        font-size: 6.5vw;
        letter-spacing: 3px;
      }

      p {

        font-size: 3.2vw;
        font-weight: 500;
      }

    }

  }

  .mvv {

    .texto-mvv {

      h3 {
        font-size: 6.5vw;
        letter-spacing: 3px;
      }

      p {

        font-size: 3.2vw;
        font-weight: 500;
      }

    }

    .lanterna-fusca {
      background-image: url("assets/lanterna-fusca-mobile.webp");
    }

  }

  .diferenciais {

    h3 {
      font-size: 6.5vw;
    }

    .cards {
      grid-template-columns: 1fr;
    }

  }

  .atuacao-mercado {

    h3 {
      font-size: 6.5vw;
    }

    .texto-atuacao-mercado p {

      font-size: 4.1vw;
      font-weight: 500;
    }

  }

  .secao-contato {
    min-height: 100svh;
    background-image: url("assets/volante-vw.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    .volante {
      display: none;
    }

    .form-contato {
      width: 100%;
      min-height: 100svh;
      padding: 24px 16px;
      background-color: rgba(43, 43, 43, 0.56);
      backdrop-filter: blur(1px);
      justify-content: center;

      h3 {
        font-size: 6.5vw;
        text-align: center;
        /* margin-bottom: 18px; */
      }

      form {
        width: min(100%, 360px);
        /* background-color: rgba(22, 43, 77, 0.68); */
        /* border: 1px solid rgba(244, 244, 244, 0.22); */
        border-radius: 12px;
        padding: 18px 14px;

        label {
          font-size: 5vw;
          font-weight: 400;
        }
      }

      .contato-sucesso {
        width: min(100%, 360px);
        margin: 0 0 14px;
        font-size: 1vw;
      }

      input,
      textarea {
        margin-bottom: 14px;
      }

      button {
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
        height: auto;
        padding: 12px 20px;
      }

    }

  }

  .footer {
    padding: 10px 14px;

    .j-freitas {
      font-size: 1.45rem;
    }

    p {
      font-size: 0.98rem;
    }

    p:last-child {
      font-size: 0.88rem;
    }

  }

}