body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to right, #0f0f23, #090921);
  color: #00e0ff;
}

header {
  background: #000018;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  box-shadow: 0 0 20px #00e0ff;
}

.logo img {
  height: 50px;
}

.center-title {
  flex: 1 1 100%;
  text-align: center;
  margin: 10px 0;
}

.header-buttons {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 10px;
}

.header-buttons a {
  margin: 5px;
  text-decoration: none;
  background: #00e0ff;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9em;
  box-shadow: 0 0 10px #00e0ff;
  transition: 0.3s;
  display: inline-block;
}

.header-buttons a:hover {
  background: #00c0e0;
}

.hero {
  text-align: center;
  padding: 40px 20px 20px;
}

.hero h1 {
  font-size: 2em;
  color: #00e0ff;
  text-shadow: 0 0 10px #00e0ff;
}

.hero p {
  font-size: 1em;
  color: #ccc;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 15px;
  background-color: #0a0a1a;
  text-align: center;
}

.benefit {
  border: 1px solid #00e0ff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px #00e0ff66;
}

.benefit h3 {
  margin-bottom: 10px;
  color: #00e0ff;
  font-size: 1.1em;
}

.benefit p {
  color: #ccc;
  font-size: 0.95em;
}

.media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 15px;
}

.media-item {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  border: 2px solid #00e0ff;
  border-radius: 10px;
  box-shadow: 0 0 20px #00e0ff;
  overflow: hidden;
}

.media-item img,
.media-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 40px 0;
  padding: 0 15px;
}

.cta-buttons a {
  background: #00e0ff;
  color: #000;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1em;
  text-decoration: none;
  box-shadow: 0 0 20px #00e0ff;
  transition: 0.3s;
}

.cta-buttons a:hover {
  background: #00c0e0;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000018;
  color: #777;
}

.cta-button {
  background: #00e0ff;
  color: #000;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2em;
  text-decoration: none;
  box-shadow: 0 0 20px #00e0ff;
  transition: 0.3s;
  display: inline-block;
  margin-top: 20px;
}

.cta-button:hover {
  background: #00c0e0;
}

.form-section {
  background-color: #0a0a1a;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px #00e0ff66;
}

.form-section h2 {
  text-align: center;
  color: #00e0ff;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
}

.form-group input {
  width: 95%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #00e0ff;
  background-color: #000018;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #00c0e0;
}

.cta-button {
  background: #00e0ff;
  color: #000;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2em;
  text-decoration: none;
  box-shadow: 0 0 20px #00e0ff;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
  width: 50%;
}

.cta-button:hover {
  background: #00c0e0;
}
.cta-button2 {
  background: #00e0ff;
  color: #000;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2em;
  text-decoration: none;
  box-shadow: 0 0 20px #00e0ff;
  transition: 0.3s;
  display: block;              /* Alterado para ocupar linha inteira */
  cursor: pointer;
  border: none;
  width: 50%;
  margin: 20px auto;           /* Centraliza horizontalmente */
  text-align: center;
}

.cta-button2:hover {
  background: #00c0e0;
}
.payment-container {
  max-width: 700px;
  margin: 40px auto;
  background: #0a0a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px #00e0ff55;
  color: #fff;
}

.payment-container h2 {
  text-align: center;
  color: #00e0ff;
  margin-bottom: 20px;
}

.payment-details {
  margin-bottom: 30px;
  line-height: 1.6;
}

.qr-code {
  text-align: center;
  margin-bottom: 20px;
}

.qr-code img {
  max-width: 200px;
  border: 2px solid #00e0ff;
  border-radius: 10px;
}

.copy-code {
  background-color: #000020;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #00e0ff;
  font-family: monospace;
  word-break: break-all;
  color: #00e0ff;
}

.revenda-info {
  margin-top: 30px;
  background: #001f2f;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

footer {
  margin-top: 40px;
}

@media (min-width: 768px) {
  header {
    flex-wrap: nowrap;
  }

  .center-title {
    flex: 1;
    margin: 0;
  }

  .header-buttons {
    flex: 1;
    text-align: right;
    margin-top: 0;
  }
	
  .logo img {
  max-width: 100%;
  height: auto;
  display: inline-block;
 }	
	
  .titulo-centralizado h2 {
    font-size: 1.2rem;
  }	
}