/* =========================
   RESET E BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #05070d;
  color: #eaeaf0;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================
   CANVAS FUNDO
========================= */
#orbitalCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.teste {
    text-align: center;
    margin-top: 20px !important;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* LOGO */
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.logo img {
    width: 180px;
    margin-top: 20px;
}

.logo-destaque {
  background: linear-gradient(90deg, #00c3ff, #7a2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   MENU HAMBURGUER
========================= */
.menu-toggle {
  width: 30px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 5px;
  transition: 0.3s;
}

/* MENU */
.nav {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 260px;
  height: calc(100vh - 70px);
  background: #070a14;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s ease;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #00c3ff;
}

.nav.active {
  right: 0;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 120px 0 90px;
}

.hero {
  padding-top: 160px;
  text-align: center;
}

/* =========================
   TÍTULOS COM CORES DA LOGO
========================= */
.title-destaque,
.section-title,
.card-title,
.plano h3 {
  background: linear-gradient(90deg, #00c3ff, #7a2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-destaque {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* =========================
   TEXTOS
========================= */
.hero-text,
.section p {
  max-width: 850px;
  margin: 0 auto 18px;
  color: #cfd3ff;
}

/* =========================
   BOTÕES
========================= */
.button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  background: linear-gradient(90deg, #00c3ff, #7a2cff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(122,44,255,0.6);
}

/* =========================
   GRID
========================= */
.grid {
  display: grid;
  gap: 25px;
}

.beneficios {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.planos {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.avaliacoes {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* =========================
   CARDS
========================= */
.card,
.plano,
.avaliacao {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 25px;
  transition: 0.3s;
}

.card:hover,
.plano:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,195,255,0.15);
}

/* =========================
   PLANOS
========================= */
.plano .preco {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin: 15px 0;
  color: #fff;
}

.plano.destaque {
  border: 1px solid #7a2cff;
  box-shadow: 0 0 35px rgba(122,44,255,0.35);
}

/* =========================
   AVALIAÇÕES
========================= */
.usuario {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #aab0ff;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 30px 0;
  text-align: center;
  background: #05070d;
  font-size: 0.9rem;
  color: #777;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .title-destaque {
    font-size: 2rem;
  }

  .section {
    padding: 100px 0 70px;
  }
}
/* ===============================
   CANVAS SEMPRE ATRÁS DO SITE
=============================== */
#orbitalCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* TODO CONTEÚDO ACIMA DO CANVAS */
header,
section,
footer {
  position: relative;
  z-index: 2;
}

/* MENU SEMPRE NO TOPO */
.header {
  z-index: 5;
}