@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  overflow-x: hidden;
}

/* HERO SECTION */
.single-offer-hero {
  padding: 160px 20px 60px;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge-neon {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 25px;
}

.single-offer-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #fff;
}

.single-offer-hero .highlight {
  color: #a4ff3c; /* Verde Neon */
}

.single-offer-hero p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* PAYMENT SECTION */
.payment-section {
  padding: 40px 20px 100px;
  display: flex;
  justify-content: center;
}

.payment-card {
  background: #161616;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 50px;
  max-width: 900px;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.pix-area {
  flex: 1;
  text-align: center;
}

.pix-area h2, .bank-details h2 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #fff;
  font-weight: bold;
}

.qr-container {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 25px;
}

.qr-code {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.pix-key-container p {
  color: #aaa;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.key-box {
  background: #222;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.key-box span {
  font-family: monospace;
  font-size: 1.1rem;
  color: #a4ff3c;
}

.copy-btn {
  background: #a4ff3c;
  color: #000;
  border: none;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.copy-btn:hover {
  background: #fff;
}

.divider {
  width: 1px;
  height: 300px;
  background: #333;
}

.bank-details {
  flex: 1;
}

.bank-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
}

.info-item span { color: #888; }
.info-item strong { color: #fff; }

@media (max-width: 768px) {
  .payment-card { flex-direction: column; padding: 30px; }
  .divider { width: 100%; height: 1px; }
}