body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: #f0f0f0;
  max-width: 100%;
  overflow-x: hidden;
}

header {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align:center;
  padding: 20px 50px;
}


header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.btn-header {
  background-color: #d1a63c;
  padding: 10px 20px;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.btn-ctt{
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 5px;
    border:15px;
    border-color:orange;
    color:#fff;
}

.btn-ctt href{
    color:#fff;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1ebd5a;
  transform: translateY(-2px);
}

.btn-whatsapp img {
  height: 18px;
  width: 18px;
}

.hero {
  background-color: #b28c2f;
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100vw;
  box-sizing: border-box;
}

.hero-text {
  max-width: 600px;
  flex: 1 1 300px;
    margin-bottom: 30px;
}

.hero img {
  width: 100%;
  max-width: 400px;
  height: auto;
  flex: 1 1 300px;
}

.hero-text h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
}

section {
  padding: 40px 5%;
  text-align: center;
}


.services-full {
  padding: 40px 0%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.services-full h2 {
  margin-bottom: 20px;
}

/* Seção de Serviços */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background-color: #1c1c1c;
  color: #fff;
  text-align: center;
}

.services .card {
  background-color: #2a2a2a;
  border-left: 5px solid #d1a63c;
  border-radius: 8px;
  padding: 25px 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.services .card:hover {
  transform: scale(1.03);
}

.services .card h3 {
  font-size: 20px;
  color: #d1a63c;
  margin-bottom: 15px;
}

.services .card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.services .btn {
  display: inline-block;
  background-color: #d1a63c;
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.services .btn:hover {
  background-color: #b88e2f;
}

/* Responsivo */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
  }

  .services .card {
    width: 90%;
  }
}

.card-eq {
  background-color: #2c2c2c;
  border: 2px solid #d1a63c;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
}

.card-eq h2 {
  margin-bottom: 10px;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel .card-eq {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.carousel .card-eq.active {
  display: block;
}



@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}


@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card {
  background-color: #2c2c2c;
  border: 2px solid #d1a63c;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
}

.card h3 {
  margin-bottom: 10px;
}

.btn {
  margin-top: 15px;
  background-color: #d1a63c;
  color: #000;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}


.about {
    
    margin: auto;
    padding: 40px 5%;
    margin: 0;
    max-width: 100%;
}


.logo-center {
  display: flex;
  background-color: #000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}


    form {
      max-width: 600px;
      margin: auto;
      background-color: #2c2c2c;
      padding: 30px;
      border-radius: 10px;
      border: 1px solid #d1a63c;
      text-align: left; /* Alinha o conteúdo do formulário à esquerda */
    }

    input, textarea {
      width: 100%;
      padding: 6px;
      margin-top: 10px;
      margin-bottom: 20px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
    }

    input[type="submit"] {
      background-color: #d1a63c;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    input[type="submit"]:hover {
      background-color: #b28c2f;
    }

    button {
      background-color: transparent;
      color: #d1a63c;
      border: 2px solid #d1a63c;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto; /* Centraliza o botão de voltar */
    }
    
        .device {
      margin-top: 30px;
      background-color: #2c2c2c;
      padding: 20px;
      border-radius: 8px;
    }

    .device img {
      max-width: 200px; /* Reduz um pouco o tamanho */
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .buttons {
      margin-top: 30px;
      display: flex;
      justify-content: center; /* Centraliza os botões */
      gap: 20px;
      flex-wrap: wrap;
    }
    
    thankyou-message {
        text-align: center;
        padding: 60px 20px;
        max-width: 800px;
        margin: 0 auto;
}

    thankyou-message h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    thankyou-message p {
        font-size: 18px;
    }

    back-button {
        display: block;
        margin: 40px auto;
        padding: 10px 20px;
      background-color: #d1a63c;
      color: #000;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
    }

    back-button:hover {
         background-color: #b28c2f;
    }
/* Responsivo */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 20px 5%;
    text-align: center;
  }

  header nav {
    margin-bottom: 10px;
  }

  header nav a {
    display: block;
    margin: 5px 0;
  }

  header img {
    margin: 15px 0;
    height: 80px;
  }

  header div {
    align-items: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero img {
    max-width: 100%;
    margin-top: 20px;
  }

  .services {
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .card {
    width: 100%;
    max-width: 90%;
  }

  .about {
    padding: 0 5%;
  }

}