body {
    /* min-height: 280dvh; */
    height: 2670px;
    display: flex;
    align-items: center;
    font-family: "Satoshi", sans-serif;
    font-size: var(--lx-text-01);
    font-weight: 500;
    color: #ffffe6;
    background-color: #10100e;
    background-image: url('fundo.png');
    background-size: cover; /* Faz a imagem cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Impede a repetição */
    background-attachment: fixed; /* Opcional: fixa o background durante o scroll */
    margin: 0;
  }
  
  main {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: "Satoshi", sans-serif;
    font-size: var(--lx-text-01);
    font-weight: 500;
    margin: 0;
    /* gap: 100px; */
  }
  
  .carousel-container {
    top: 40px;
    width: 65%;
  /*   margin-top: 0px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto; */
    margin: 100px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--lx-gap);
  
    .carousel {
      aspect-ratio: 16/9;
      width: 100%;
      position: relative;
      overflow: hidden;
  
      .item {
        opacity: 0;
        width: 100%;
        height: 100%;
        display: none;
        transition: opacity 0.5s ease-in-out;
  
        .imagecar {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
        }
  
        .caption {
          width: 100%;
          padding: var(--lx-space-01);
          position: absolute;
          bottom: 0;
          text-transform: uppercase;
          text-align: center;
          font-size: 12px;
          background-color: rgba(0, 0, 0, 0.5);
        }
  
        &.active {
          opacity: 1;
          display: block;
        }
      }
    }
  
    .btn {
      padding: 1em 1em;
      position: absolute;
      transform: translateY(-50%);
      top: 50%;
      outline: none;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      font-size: 22px;
      font-weight: bolder;
      color: rgb(28, 47, 85);
      background-color: rgba(255, 255, 255, 0.575);
      border-radius: 5px;
      transition: transform 0.2s ease-in-out;
      padding: 12px 10px;
  
      &:active,
      &:focus {
        transform: translateY(-50%) scale(0.9);
      }
  
      &:hover {
        transform: translateY(-50%) scale(0.96);
      }
    }
  
    .prev {
      left: -4.5%;
    }
  
    .next {
      right: -4.5%;
    }
  
    .dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  
      .dot {
        cursor: pointer;
        height: 10px;
        width: 10px;
        background-color: #242421;
        transition: background-color 0.2s ease;
  
        &.active,
        &:hover {
          background-color: #ffffe6;
        }
      }
    }
  }
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: rgb(28, 47, 85);
    display: flex;
    justify-content: left;
    gap: 200px;
    align-items: center;
    padding: 10px 20px;
    height: 90px;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  }
  .menubuttonteste {
    position: fixed;
    right: 4%;
    top: 37px;
    width: 40%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    color: rgb(28, 47, 85);
  }
  
  /*menu*/
  
  
  /* Reset básico */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* Estilização do menu */
  nav {
    background: rgb(28, 47, 85);
    padding: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    color: rgb(28, 47, 85);
  }
  
  nav li {
    display: inline;
    color: rgb(28, 47, 85);
  }
  
  nav a {
    color: rgb(28, 47, 85);
    font-weight: bold;
    text-decoration: none;
    padding: 10px;
  }
  
  /* Botão do menu (invisível por padrão em telas grandes) */
  #menu-btn {
    display: none;
    background: rgb(28, 47, 85);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
  }



  
  #menu.active {
    display: flex;
    top: 25px;
    right: 4px;
  }
  
  
  /* Estilos para telas menores que 900px */
  @media (max-width: 900px) {
  
    nav a {
      color: black;
      font-weight: normal;
      /* border: 3px solid rgb(28, 47, 85); */
    }
    nav ul {
      top: 100px;
    }
    .menubuttonteste{
      justify-content: right;
      width: 80px;
    }
    /* #menu {
        display: none; 
        position: fixed;
        right: 20px;
        flex-direction: column;
        background: rgb(28, 47, 85);
        position: absolute;
        width: 80px;
    } */
  
    #menu {
        display: none;
        position: absolute;
        right: 20px;
        top: 62px;
        background-color: rgb(92, 166, 191);
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        border-radius: 5px;
        z-index: 1000;
      }
    #menu li {
        text-align: center;
        padding: 10px 0;
        /* border: 3px solid rgb(28, 47, 85); */
    }
  
    #menu-btn {
        display: block; /* Mostra o botão apenas em telas menores */
        width: 100px;
        position: fixed;
        right: 20px;
        top: 25px;
    }
  }
  
  /*menu*/
  
  .lista {
    background: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  .logo img {
    position: fixed;
    height: 90px;
    left: 20px;
    top: 0px;
  }
  .fundoprod {
  /*   background-image: url('fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
    background-color: rgba(28, 47, 85, 0.7);
    border-radius: 20px;
  }
  .fundosoc {
  /*   background-image: url('fundo2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-color: rgba(28, 47, 85, 0.7);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
  }
  .fundovideo {
    background-color: rgba(28, 47, 85, 0.7);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
  }
  .main {
    width: 55%;
    height: 80%;
    color: white;
  /*   background-color: rgba(28, 47, 85, 0.7);
    border-radius: 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 30px;
  }
  .mainsoc {
    width: 55%;
    height: 90%;
    color: white;
  /*   background-color: white;
    border-radius: 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 30px;
  }
  .mainvideo {
    width: 55%;
    height: 90%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 30px;
   } 
  .listaproduto {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    padding: 10px;
  }
  
  .produto {
    font-size: 26px;
    margin: 10px;
  }
  
  span {
    color: rgb(238, 116, 59);
    font-size: 34px;
  }
  
  .listaproduto div:nth-child(1) { margin-left: 8%; }
  .listaproduto div:nth-child(2) { margin-left: 16%; }
  .listaproduto div:nth-child(3) { margin-left: 24%; }
  .listaproduto div:nth-child(4) { margin-left: 32%; }
  .listaproduto div:nth-child(5) { margin-left: 40%; }
  .listaproduto div:nth-child(6) { margin-left: 48%; }
  
  .whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background-color: #25D366; /* Cor verde do WhatsApp */
    color: white;
    padding-top: 12px;
    padding-left: 12px;
    padding-bottom: 8px;
    padding-right: 10px;
    border: none;
    border-radius: 35px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .whatsapp-button:hover {
    background-color: #128C7E; /* Cor mais escura ao passar o mouse */
  }
  .logocar {
    width: 100%;
  }

  .contact-form {
    margin: 44px 0px;
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    height: fit-content;
    color: black;
}
.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    color: black;
}
.contact-form input, .contact-form textarea {
    width: 96%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.contact-form textarea {
    resize: vertical;
    height: 100px;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: rgb(28, 47, 85);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: rgba(28, 47, 85, 0.7);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px; /* Ajuste para a altura da sua navbar */
  }
.footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-top: 50px;
  background-color: black;
  width: 100%;
  height: auto;
  bottom: 0px;
  padding-bottom: 5px;
  padding-left: 50px;
  padding-right: 50px;
}

.footerInt {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 150px;
  margin-bottom: 40px;
  /* margin-right: 400px; */
}
.footerContato {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 16px;
  line-height: 24px;
  margin-top: 22px;
}
.footerExterno {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
}
.footerMidias {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
}
.direito {
  font-size: 12px;
}

.portfolio {
  color: rgb(28, 47, 85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 150px 0px;
  width: 100%;
  min-height: 78dvh;
  background-color: white;
  padding-bottom: 30px;
  }
.video  {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 26px;
}

.portfolioInt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.explica {
  flex-wrap: wrap;
  font-size: 20px;
  text-align: justify;
  line-height: 24px;
  width: 560px;
  margin-top: 10px;
}
.titportfolio {
  font-size: 36px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 (9 / 16 = 0.5625) */
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media (max-width: 1780px) {
    .main, .mainsoc, .mainvideo {
        width: 80%;
        padding: 15px;
        gap: 20px;
    }  
    .listaproduto {
        gap: 20px;
    }
    h1 {
        font-size: 28px;
    }
    .listaproduto div:nth-child(1) { margin-left: 7%; }
    .listaproduto div:nth-child(2) { margin-left: 14%; }
    .listaproduto div:nth-child(3) { margin-left: 21%; }
    .listaproduto div:nth-child(4) { margin-left: 28%; }
    .listaproduto div:nth-child(5) { margin-left: 35%; }
    .listaproduto div:nth-child(6) { margin-left: 42%; }
}

@media (max-width: 1280px) {

  .video-container {
    position: relative;
    width: 80%;
    padding-bottom: 56.25%; /* Proporção 16:9 (9 / 16 = 0.5625) */
    margin: 0 auto;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
    .carousel-container {
      width: 80%;
      margin: 80px auto;
    }

    h1 {
        font-size: 26px;
    }
  
    .main, .mainsoc, .mainvideo {
      width: 70%;
      padding: 15px;
      gap: 10px;
    }
    .listaproduto {
        gap: 10px;
    }
  
    .explica {
      width: 90%;
      font-size: 18px;
    }

    .portfolio {
        height: fit-content;
        min-height: auto;
        padding: 5px;
    }
  
    .portfolioInt {
      flex-direction: column;
      gap: 30px;
    }
  
    .navbar {
      gap: 60px;
      padding: 10px;
    }

    .footer {
        height: auto;
        padding: 20px;
    }
  
    .footerInt {
      gap: 60px;
      flex-direction: column;
      align-items: center;
    }
  
    .titportfolio {
      font-size: 30px;
    }
  
    .produto {
      font-size: 22px;
    }
  
    span {
      font-size: 28px;
    }
  }
  
  @media (max-width: 920px) {
    .carousel-container {
        width: 90%;
        margin: 70px auto;
      }
  
      h1 {
          font-size: 24px;
      }
    
      .main, .mainsoc, .mainvideo {
        width: 90%;
        padding: 10px;
        gap: 5px;
      }
  
      .listaproduto {
          gap: 5px;
      }
  }

  @media (max-width: 768px) {
    .carousel-container {
      width: 90%;
      aspect-ratio: 4/4;
      margin: 70px auto;
      margin-bottom: 20px;

      .carousel {
        aspect-ratio: 4/4;
      }
    }

    h1 {
        font-size: 18px;
        text-align: center;
    }

    h2 {
      font-size: 15px;
      text-align: center;
    }
  
    .navbar {
      flex-direction: column;
      gap: 2px;
      /* padding: 10px 0; */
    }

    .listaproduto {
        gap: 4px;
        padding: 1px;
        margin: 0px;
    }
  
    .main, .mainsoc, .mainvideo {
      width: 100%;
      padding: 10px;
      gap: 5px;
    }
  
    .explica {
      width: 100%;
      font-size: 16px;
    }
  
    .produto {
      font-size: 16px;
      margin: 3px;
    }
  
    span {
      font-size: 24px;
    }
  
    .contact-form {
      padding: 10px;
      width: 95%;
    }
  
    .footer {
      height: auto;
      padding: 20px;
    }
  
    .footerInt {
      gap: 30px;
    }
    /* .video-container {
        width: 504;
        height: 283.5;    
    } */
    .logo img {
        position: fixed;
        height: 70px;
        left: 0px;
        top: 5px;
  }
  .video-container {
    padding-bottom: 75%; /* Proporção mais alta para mobile (4:3) */
    width: 100%;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
}
