body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181a20;
  color: #fff;
  min-height: 100vh;
}

.hero-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(0,255,231,0.18) 0%, rgba(0,0,0,0) 80%);
  z-index: 1;
}

.container {
  background: rgba(30, 30, 40, 0.97);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  padding: 48px 32px 24px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

header h1 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 2.7rem;
  letter-spacing: 2px;
  margin-bottom: 0.2em;
  color: #00ffe7;
  text-shadow: 0 0 16px #00ffe7, 0 0 32px #232526;
}

.slogan {
  font-size: 1.15rem;
  color: #b0b0b0;
  margin-bottom: 2em;
}

.cta {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 1em 0;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0,255,231,0.12);
  border: none;
}

.contato-btn.ligue {
  background: linear-gradient(90deg, #00ffe7 0%, #0077ff 100%);
  color: #232526;
}
.contato-btn.ligue:hover {
  background: linear-gradient(90deg, #0077ff 0%, #00ffe7 100%);
  color: #fff;
}

.contato-btn.whatsapp {
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #fff;
}
.contato-btn.whatsapp:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  color: #fff;
}

.beneficios {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  margin: 2em 0 1.5em 0;
}
.beneficio {
  background: rgba(0,255,231,0.08);
  border-radius: 10px;
  padding: 0.7em 0.5em;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.98rem;
  color: #00ffe7;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(0,255,231,0.07);
  margin: 0 2px;
}
.beneficio i {
  font-size: 1.3em;
  margin-bottom: 0.2em;
}

.info {
  margin-bottom: 1.2em;
}

.depoimento {
  background: rgba(0,255,231,0.07);
  border-radius: 8px;
  padding: 0.8em 1em;
  margin-bottom: 1.5em;
  color: #fff;
  font-style: italic;
  font-size: 1.05rem;
  box-shadow: 0 1px 6px rgba(0,255,231,0.05);
}
.depoimento i {
  color: #00ffe7;
  margin: 0 0.2em;
}

footer {
  margin-top: 1.5em;
  font-size: 0.9rem;
  color: #888;
  background: none;
}

@media (max-width: 500px) {
  .container {
    padding: 18px 4px 12px 4px;
    max-width: 98vw;
  }
  header h1 {
    font-size: 2rem;
  }
  .beneficios {
    flex-direction: column;
    gap: 0.7em;
  }
  .beneficio {
    margin: 0;
  }
} 