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

body {
  font-family: Arial, sans-serif;
  /* background-color: #e5e6f0; */
  background-image: url("../img/star.webp");
  color: #333;
}

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

header {
  background-color: rgba(40, 16, 63, 0.671);
  color: white;
  padding: 10px;
}


.logo {
  height: 90px;
  width: 166px;
  margin-left:20px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 50px;
}

.menu-item:hover {
  background-color: #0034dd33;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

main {
  background-color: #d0b7e2ef;
  padding: 2rem;
}

.produtos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.produtos h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #39123a;
}

.grade {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.produto {
  background-color: #ffffff71;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.produto img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.produto h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 15px 0 10px;
}

.produto p {
  font-size: 1.1rem;
  color: #8155b9;
  font-weight: bold;
  margin-bottom: 15px;
}

.produto button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #6a07a3;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.produto button:hover {
  background-color: #b575e9;
}

footer {
  background-color: rgba(40, 16, 63, 0.575);
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 1rem 0;
  height: auto;

}

/* web-to-lead */
.modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6); /* fundo escurecido */
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden; /* começa invisível */
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.show {
  visibility: visible;
  opacity: 1;
}
    .modal-content {
      background-color: #fff;
      padding: 30px 25px;
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      position: relative;
    }

    .close {
      position: absolute;
      right: 15px;
      top: 10px;
      color: #aaa;
      font-size: 28px;
      cursor: pointer;
    }

    .close:hover {
      color: #000;
    }

    label {
      display: block;
      margin: 12px 0 5px;
      color: #6A0DAD;
      font-weight: bold;
    }

    input[type="text"],
    input[type="email"],
    select {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
      background-color: #F8F0FC;
      font-size: 14px;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    select:focus {
      border-color: #9B59B6;
      outline: none;
      background-color: #fff;
    }

    button {
      background-color: #9B59B6;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%;
      margin-top: 10px;
    }

    button:hover {
      background-color: #6A0DAD;
    }

    #thankYouMessage {
      text-align: center;
    }

    #thankYouMessage h2 {
      color: #6A0DAD;
    }