@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 */
.offer-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-gold {
  background-color: rgba(212, 255, 0, 0.1);
  border: 1px solid #d7ff00;
  color: #d7ff00;
  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;
}

.offer-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 3.5rem; /* Aumentado para compensar a troca da fonte */
  margin-bottom: 20px;
  line-height: 1.4;
  color: #fff;
}

.offer-hero .highlight {
  color: #d7ff00;
  text-shadow: 0 0 20px rgba(215, 255, 0, 0.3);
}

.offer-hero p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* PLANOS SECTION */
.plans-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #888;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center; /* Alinha verticalmente para destacar o do meio */
}

.plan-card {
  background: #161616;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: #d7ff00;
}

.plan-card.featured {
  background: #1a1a1a;
  border: 2px solid #d7ff00;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 0 30px rgba(215, 255, 0, 0.1);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d7ff00;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
}

.plan-header h3 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}

.price span {
  font-size: 1rem;
  color: #888;
  font-weight: normal;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
}

.plan-features li {
  margin-bottom: 15px;
  color: #ccc;
  font-size: 0.95rem;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s;
}

.plan-btn:hover {
  background: #fff;
  color: #000;
}

.btn-featured {
  background: #d7ff00;
  border-color: #d7ff00;
  color: #000;
}

.btn-featured:hover {
  background: #c4e600;
  box-shadow: 0 0 20px rgba(215, 255, 0, 0.4);
}

/* IMPACT SECTION */
.impact-section {
  padding: 80px 40px;
  background: #111;
  text-align: center;
}

.impact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.impact-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.impact-text p {
  color: #888;
  margin-bottom: 50px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.impact-item img {
  width: 50px;
  margin-bottom: 20px;
}

.impact-item h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.impact-item p {
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .offer-hero h1 { font-size: 1.8rem; }
  .plan-card.featured { transform: scale(1); }
}