@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 */
.partner-hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a 0%, #0a0a0a 100%);
  border-bottom: 1px solid #222;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge-partner {
  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;
}

.partner-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.partner-hero .highlight {
  color: #ccff00; /* Verde Neon do tema */
}

.partner-hero p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* FORM SECTION */
.form-section {
  padding: 60px 20px 100px;
  background-color: #0a0a0a;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #161616;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #333;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.form-header p {
  color: #888;
  font-size: 0.95rem;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #ccc;
  margin-left: 5px;
}

input, select, textarea {
  background: #222;
  border: 1px solid #444;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #ccff00;
}

textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #ccff00;
  color: #000;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .form-container { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .partner-hero h1 { font-size: 2.5rem; }
}