/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0f1a;
  color: #e6e8ee;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */

header {
  background: #0d1324;
  padding: 20px 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO + TEXTO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 55px;
  height: auto;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(90deg, #1e3a8a, #6d28d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BOTÃO MENU */
.btn-primary {
  background: linear-gradient(135deg, #1e3a8a, #6d28d9);
  color: #ffffff;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero {
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.hero-text h1 {
  font-size: 26px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 15px;
  color: #b9c0d3;
  margin-bottom: 25px;
}

.hero-img img {
  width: 100%;
  max-width: 320px;
}

/* ================= SECTIONS ================= */

.section {
  padding: 60px 0;
}

.section.alt {
  background: #10172b;
}

.center {
  text-align: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split img {
  width: 100%;
  max-width: 350px;
}

/* ================= PLANOS ================= */

.plans {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #141b2e;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.price {
  font-weight: bold;
  color: #6366f1;
  margin: 10px 0;
}

.destaque {
  border: 2px solid #6d28d9;
}

/* ================= CTA ================= */

.cta {
  background: #0d1324;
  padding: 70px 0;
  text-align: center;
}

/* ================= FOOTER ================= */

footer {
  padding: 25px 0;
  text-align: center;
  background: #0d1324;
  font-size: 14px;
  color: #8a90a3;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #6d28d9;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
}

/* ================= DESKTOP ================= */

@media (min-width: 1024px) {

  .hero {
    padding: 100px 0;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .hero-text {
    max-width: 550px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-img img {
    max-width: 500px;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .plans {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .logo img {
    width: 46px;
  }

  .logo-text {
    font-size: 22px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

}