* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f2b46, #050b12);
  color: #e5ecf3;
  line-height: 1.6;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 10%;
}

.logo-center img {
  width: 140px;
  margin-bottom: 10px;
}

.logo-center h1 {
  color: #f6c94c;
  letter-spacing: 3px;
}

.hero h2 {
  font-size: 40px;
  margin-top: 20px;
}

.hero p {
  max-width: 800px;
  margin: 20px auto;
  color: #cbd6e2;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f6c94c, #ffdd7a);
  color: #0b1c2d;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.big {
  margin-top: 30px;
  font-size: 18px;
}

/* VIDEO */
.video-area {
  display: flex;
  justify-content: center;
  padding: 80px 10%;
}

.video-box {
  width: 100%;
  max-width: 900px;
  height: 450px;
  border: 2px dashed rgba(246,201,76,0.6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6c94c;
  font-size: 22px;
}

/* BENEFITS */
.benefits {
  padding: 80px 8%;
  text-align: center;
}

.benefits h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
}

.box h3 {
  color: #f6c94c;
  margin-bottom: 10px;
}

/* PLANS */
.plans {
  padding: 100px 8%;
  text-align: center;
}

.plan-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.plan {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  width: 280px;
}

.plan.destaque {
  border: 2px solid #f6c94c;
}

.price {
  font-size: 42px;
  color: #f6c94c;
}

/* CTA */
.cta {
  padding: 100px 10%;
  text-align: center;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  color: #8896a8;
}
