  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  body{
    background-color: #201f1f;
  }

/*ABA DE SERVIÇOS*/
.container-servico {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.card,
.container-servico .imagem {
  width: 90%;
  max-width: 600px;
  box-sizing: border-box;
  border-radius: 15px;
}
.container-servico .imagem {
  height: auto;
  object-fit: cover;
  display: block;
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
/*FIM DA ABA DE SERVIÇOS*/
  nav {
      background-color: rgba(255, 145, 0, 0.664);
      opacity: 75%;
      width: 60%;
      margin: 35px auto;
      border-radius:  75px;
      padding: 15px 30px;
      display: flex;
      align-items: center; 
      justify-content: space-between;
      box-shadow: 0 4px 20px rgba(250, 250, 250, 0.3);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }
    
    nav .logo {
      height: 50px; 
      display: inline-block;
      margin: 0; 
      padding: 0; 
      margin-right: 00px;
    }
    .drop-submenu{
      position: relative;
    }
    .drop-submenu > .submenu{
      position: absolute;
      width: auto;
      background-color: black;
      padding: 0;
      text-align: left;
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      height: 0;
      overflow: hidden;
      transition: height .5s;
    }
    .drop-submenu.dropar > .submenu{
      height: 250px;
    }
    .drop-submenu > .submenu a{
      padding: 10px;
    }
    .drop-mob{
      display: block;
      margin-left: 0px;
    }
    .teste{
      display: flex;
    }
    .drop {
      position: relative;
      display: none;
    }
    .dropbtn {
      cursor: pointer;
      width: 20px;
      height: 18px;
    }
    .drop-conteudo {
      visibility: hidden; 
      display: flex;
      opacity: 0; 
      position: absolute;
      background-color: #201f1f;
      justify-content: center;
      align-items: center;
      min-width: 50px;
      box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
      flex-direction: column;
      border-radius: 4px;
      padding: 5px;
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .drop-conteudo.show {
      visibility: visible; 
      opacity: 1; 
      transform: translateY(10px); 
  }
    .dropbtn-wrapper {
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
    }
    .seta {
    color: #fff;
    font-size: 12px;
  }
    .drop-conteudo img {
      width: 16px;
      height: 14px;
      display: block;
      margin-bottom: 5px;
      cursor: pointer;
    }
    
    .drop-conteudo img:last-child {
      margin-bottom: 0;
    }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
   
  }

  nav ul li {
    position: relative;
  }

  nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
    border-radius: 8px;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background-color: orange;
    color: white;
  }

  nav span{
    color: #1d1d1d;
    
  }
  .logo-container {
    display: flex;
    align-items: center;
    gap: 0; /* Nenhum espaço entre logo e texto */
  }

  .logo {
    height: 50px;
    display: block; /* Remove espaço extra que inline images têm */
    margin: 0;
    padding: 0;
  }

  .texto-logo {
    font-size: 24px;
    font-weight: bold;
    color: #1d1d1d;
    margin: 0;
    padding: 0;
    line-height: 1; /* Evita espaço vertical extra */
  }
  .subir {
  opacity: 0;
  transform: translateY(20px);
  animation: subirLetras 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes subirLetras {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.insta-logo {
    font-size: 1.3rem; 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gps-logo {
    font-size: 1.3rem; 
    color: #EA4335;
    display: inline-block;
}
.wpp-logo {
  font-size: 1.3rem;
  color: #01e675; 
  display: inline-block;
}
  .background-section {
    position: relative;
    height: 900px;
    background: linear-gradient(to bottom, rgba(44, 41, 41, 0) 70%, #201f1f 100%), url("/static/imagens/ai.ddfac0046c06.webp");
    background-size: cover;
    background-position: center 80%;
    background-repeat: no-repeat;
    width: 100%;
  }
  .texto {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%); 
  text-align: center;
  color: azure;
  font-family: 'Poppins', sans-serif;;
  }
  .texto h1{
    font-size: 4rem;
    word-wrap: break-word;
    white-space: normal;
    margin-bottom: 20px;
    font-style: oblique;
  }
  .texto p{
    font-size: 1.8rem;
    
  }
  .orcamento {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #01e675;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }

  .orcamento i {
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
  }

  .orcamento:hover{
    background-color: #ffffff;
    color: #029e3b;
    font-weight: 900;
    box-shadow: 2px 2px 20px #5fe690;
  }
  .container {
    display: grid;
    grid-template-columns: repeat(1, 600px); /* 1 coluna de mesmo tamanho */
    grid-template-rows: auto auto; 
    column-gap: 20px;
    row-gap: 10px;
    padding: 10%;
    justify-content: center;
  }

  .card {
  background-color: rgb(26, 26, 26);
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
              rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}
.scroll.ativo {
  opacity: 1;
  transform: translateX(0);
}

.card.scroll.ativo:hover {
  transform: translateY(-5px);
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
  .card img {
    max-width: 100%;
    border-radius: 4px;
    size: cover;
    
  }

  .card h1 {
    margin: 20px 10px;
    font-size: 30px;
    color:cornsilk;
  }

  .card p {
    
    color: #666;
    margin: 10px;
    font-size: 15px;
  }

  .card:hover {
    transform: translateY(-5px);
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  html {
    scroll-behavior: smooth;
  }


  .footer {
    background-color: #1d1d1d;
    padding: 20px 0; /* aumentei o padding */
    text-align: center;
  }

  .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* aumentei o espaçamento entre os itens */
    flex-wrap: wrap;
  }

  .footer-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 16px; /* aumentei o tamanho da fonte */
    gap: 8px;
  }

  .footer-link:hover {
    color: #ff6600;
  }

  .footer-icon {
    width: 20px; /* aumentei o tamanho do ícone */
    height: 20px;
  }
  .footer-copyright {
  color: white;
  font-size: 14px;
  padding: 2%;
  }
  form {
  width: 100%;
  max-width: 500px;
  min-width: 500px;
  padding: 30px;
  background-color: #1e1e1e;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  }

  /* Título do formulário */
  form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #f57c00;
  }

  /* Rótulos */
  form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #dddddd;
  }

  /* Campos de entrada */
  form input[type="text"],
  form input[type="email"],
  form input[type="tel"],
  form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #444444;
  border-radius: 5px;
  background-color: #2c2c2c;
  color: #ffffff;
  font-size: 14px;
  transition: border-color 0.3s, background-color 0.3s;
  }

  form input[type="text"]:focus,
  form input[type="email"]:focus,
  form input[type="tel"]:focus,
  form textarea:focus {
  border-color: #f57c00;
  background-color: #333333;
  outline: none;
  }

  form button,
  form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #f57c00;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  }

  form button:hover,
  form input[type="submit"]:hover {
  background-color: #e56a00;
  }

  form textarea {
  resize: vertical;
  min-height: 120px;
  }
  .form-section{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  }
  .form-section .container{
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  align-items: center;
}
.messages {
    margin-bottom: 10px;
    min-height: 50px;
    text-align: center;
}

.alert {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 16px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #ffb0b7;
    color: #ff0019;
    border: 1px solid #ffb0b7;
}
@media (max-width: 1024px){
  .container-servico{
      margin-top: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 5%;
  }
  .container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1%;
      margin-top: 100px;
  }
  .card {
      width: 90%;
      margin-bottom: 20px;
    }
  .drop{
      display: none;
    }
    .drop-mob{
      display: block;
      margin: 0;
    }
    .drop-submenu > .submenu{
      position: relative;
    }
    .drop-submenu.active{
      height: auto;
    }
    .nav-list > .drop-submenu{
      display: flex;
      flex-direction: column;
    }
    .barra div{
      width: 32px;
      height: 2px;
      background-color: #ffffff;
      margin: 8px;
      right: 0;
      transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
      position: relative;
    }
    .barra.active .linha1{
      transform: rotate(+45deg) translate(7px, 7px);
    }
    .barra.active .linha2{
      opacity: 0;
    }
    .barra.active .linha3{
      transform: rotate(-45deg) translate(7px, -7px);
    }
    .nav-list li {
      width: 100%;
      border: 1px solid white; 
      text-align: center;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .nav-list{
      background-color: rgb(0, 0, 0);
      position: absolute;
      display: grid;
      height: auto; 
      place-items: center;
      row-gap: 0px;
      top: 7.5vh;
      right: 0;
      width: 50vw;
      height: auto;
      z-index: 9999;
      transform: translateX(150%);
      transition: transform 0.3s ease-in-out;
    }
    .nav-list.active{
      transform: translateX(0);
    }
    nav {
      width: 70%;
      padding: 10px 20px;
    }
    .mobile{
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
    }
    nav .log{
      margin-right: 0px;
    }
}

  @media (max-width: 500px) {
    .texto {
      left: 50%;
      top: 35%;
      transform: translate(-50%, -50%);
      padding: 10px;
    }
    nav .log{
      margin-right: 0px;
    }
    nav{
      width: 90%;
    }
    .drop-submenu > .submenu{
      position: relative;
    }
    .drop-submenu.active{
      height: auto;
    }
    .nav-list > .drop-submenu{
      display: flex;
      flex-direction: column;
    }
    .texto h1 {
      font-size: 2.2rem;
    }

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

    .form-section {
      padding: 20px;
      margin-top: 80px;
    }

    form {
      overflow-x: hidden;
      max-width: 90%;
      min-width: 320px;
    }

    .footer-container {
      flex-direction: column;
      gap: 25px;
    }
    .footer-container .txt{
      font-size: 15px;
    }
    .nova{
      margin-left: 0px;
    }
    .container-servico {
      display: flex;
      margin-top: 150px;
      flex-direction: column;
      align-items: center;
      padding: 5%;
  }
  .container-servico .imagem{
    margin-bottom: 5%;
  }
  .nav-list{
    margin-top: 20px;
  }
  }
  @media (min-width:1025px) and (max-width:1366px){
    nav .log{
      margin-right: 0px;
    }
    .container{
      margin-top: 100px;
    }
    .drop-submenu > .submenu{
      position: relative;
    }
    .drop-submenu.active{
      height: auto;
    }
    .nav-list > .drop-submenu{
      display: flex;
      flex-direction: column;
    }
    .barra div{
      width: 32px;
      height: 2px;
      background-color: #ffffff;
      margin: 8px;
      right: 0;
      transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
      position: relative;
    }
    .barra.active .linha1{
      transform: rotate(+45deg) translate(7px, 7px);
    }
    .barra.active .linha2{
      opacity: 0;
    }
    .barra.active .linha3{
      transform: rotate(-45deg) translate(7px, -7px);
    }
    .nav-list li {
      width: 100%;
      border: 1px solid white; 
      text-align: center;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .nav-list{
      background-color: rgb(0, 0, 0);
      position: absolute;
      display: grid;
      height: auto; 
      place-items: center;
      row-gap: 0px;
      top: 7.5vh;
      right: 0;
      width: 200px;
      height: auto;
      z-index: 9999;
      transform: translateX(250%);
      transition: transform 0.3s ease-in-out;
    }
    .nav-list.active{
      transform: translateX(0);
    }
    nav {
      padding: 10px 20px;
    }
    .container-servico{
      margin-top: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 5%;
  }
  .container{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 5%;
  }
  .card {
      width: 90%;
    }
    .mobile{
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
    }
  }
  