  /* =========================
   RESET BÁSICO
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #05050d;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* =========================
   FUNDO DECORATIVO
========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(108, 63, 255, 0.15), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(0, 255, 150, 0.05), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 13, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 999;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 15px;
  background: linear-gradient(135deg, #6c3fff, #00ff95);
  box-shadow: 0 0 30px rgba(108, 63, 255, 0.5);
}

.logo h2 {
  font-size: 24px;
  font-weight: 900;
}

/* =========================
   MENU
========================= */

.menu {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.menu a:hover {
  color: #00ff95;
}

/* =========================
   BOTÕES HEADER
========================= */

.header-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   BOTÕES GERAIS
========================= */

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #6c3fff, #00ff95);
  box-shadow: 0 0 35px rgba(108, 63, 255, 0.4);
  transition: 0.4s;
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-left: 10px;
  transition: 0.4s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* =========================
   HERO
========================= */

.hero {
  padding-top: 170px;
  padding-bottom: 100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 25px;
  background: rgba(108, 63, 255, 0.2);
  border: 1px solid rgba(108, 63, 255, 0.4);
}

.hero h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  color: #9f9fb5;
  font-size: 18px;
  margin-bottom: 35px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 50px rgba(108, 63, 255, 0.5));
}

/* =========================
   STATS
========================= */

.stats {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: #0d0d19;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat h3 {
  font-size: 30px;
  color: #00ff95;
}

/* =========================
   SEÇÕES
========================= */

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 45px;
  margin-bottom: 15px;
}

.section-title p {
  color: #9f9fb5;
}

/* =========================
   FEATURES
========================= */

.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #0d0d19;
  padding: 35px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(108, 63, 255, 0.2);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* =========================
   STEPS
========================= */

.steps {
  padding: 100px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
  padding: 40px;
  background: #0d0d19;
  border-radius: 20px;
}

.step span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #6c3fff;
  font-weight: bold;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: #0d0d19;
  padding: 30px;
  border-radius: 20px;
}

/* =========================
   FAQ
========================= */

.faq {
  padding: 100px 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

details {
  background: #0d0d19;
  padding: 25px;
  border-radius: 15px;
  cursor: pointer;
}

summary {
  font-weight: bold;
  margin-bottom: 10px;
}

/* =========================
   CONTATO
========================= */

.contact {
  padding: 100px 0;
  text-align: center;
}

form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 18px;
  border: none;
  border-radius: 15px;
  background: #0d0d19;
  color: #fff;
}

button {
  padding: 18px;
  border: none;
  border-radius: 50px;
  background: #6c3fff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  margin-top: 50px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

  .hero-container,
  .features-grid,
  .steps-container,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 40px;
  }

  .stats {
    flex-direction: column;
  }
}

/* =========================
   ANIMAÇÕES JS
========================= */

.mobile-active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  padding: 30px;
  background: #0d0d19;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hidden-element {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   CONTATO PREMIUM
========================= */

.contact h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-box {
  text-align: center;
}

.contact-box a {
  display: inline-block;
  width: 100%;
}

/* Cards informativos */
.contact-box div {
  transition: 0.3s;
}

.contact-box div:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(108, 63, 255, 0.15);
}

/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff95, #6c3fff);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 255, 149, 0.3);
  z-index: 9999;
  transition: 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* animação de atenção */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 149, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 255, 149, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 149, 0);
  }
}

/* =========================
   MELHORIA GERAL DE UX
========================= */

a {
  transition: 0.3s;
}

button,
.btn-primary,
.btn-secondary {
  cursor: pointer;
}

/* melhora contraste do contato */
.contact p {
  color: #b5b5c7;
}



/* =========================
   FEATURE CARDS PREMIUM
========================= */

.feature-card {
  position: relative;
  overflow: hidden;
}

/* efeito de brilho suave no hover */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(108, 63, 255, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

/* lista dentro do card */
.feature-card ul {
  list-style: none;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* cada item da lista */
.feature-card ul li {
  font-size: 14px;
  color: #cfcfe6;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

/* ícone de check fake */
.feature-card ul li::before {
  content: "✓";
  color: #00ff95;
  font-weight: bold;
  flex-shrink: 0;
}

/* badge/tag inferior */
.tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(108, 63, 255, 0.15);
  border: 1px solid rgba(108, 63, 255, 0.3);
  color: #bdb6ff;
  letter-spacing: 0.5px;
}

/* =========================
   CARD EM DESTAQUE (PLAY STORE)
========================= */

.feature-card.highlight {
  border: 1px solid rgba(0, 255, 149, 0.4);
  box-shadow: 0 0 40px rgba(0, 255, 149, 0.08);
  transform: scale(1.02);
}

.feature-card.highlight:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 255, 149, 0.15);
}

/* =========================
   ICON MELHORADO
========================= */

.feature-card .icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 14px;
  background: rgba(108, 63, 255, 0.15);
  border: 1px solid rgba(108, 63, 255, 0.25);
  margin-bottom: 18px;
}

/* =========================
   TÍTULO DO CARD
========================= */

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* =========================
   TEXTO DO CARD
========================= */

.feature-card p {
  color: #b5b5c7;
  font-size: 14px;
  line-height: 1.5;
}

/* =========================
   HOVER MAIS PREMIUM
========================= */

.feature-card {
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(108, 63, 255, 0.12);
}

/* =========================
   RESPONSIVO AJUSTADO
========================= */

@media (max-width: 900px) {
  .feature-card.highlight {
    transform: none;
  }
}

.step p {
  font-size: 13px;
  color: #b5b5c7;
  margin-top: 10px;
  line-height: 1.4;
}




/* =========================
   PRICING VISUAL PREMIUM
========================= */

.pricing-card {
  max-width: 950px;
  margin: auto;
  background: #0d0d19;
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(108, 63, 255, 0.2);
}

/* preço topo */
.price-highlight {
  text-align: center;
  margin-bottom: 40px;
}

.badge-price {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(108, 63, 255, 0.2);
  border: 1px solid rgba(108, 63, 255, 0.3);
  font-size: 12px;
  margin-bottom: 15px;
}

.price-highlight h1 {
  font-size: 60px;
  color: #00ff95;
}

.subtitle {
  color: #9f9fb5;
}

/* grid pagamentos */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.pricing-box {
  background: #111126;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-box {
  border: 1px solid rgba(0, 255, 149, 0.3);
  box-shadow: 0 0 40px rgba(0, 255, 149, 0.05);
}

.pricing-box h2 {
  color: #fff;
  margin: 10px 0;
}

.pricing-box p {
  color: #b5b5c7;
  font-size: 14px;
}

/* listas */
.pricing-box ul {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-box ul li {
  font-size: 13px;
  color: #cfcfe6;
}

/* taxa */
.pricing-tax {
  margin-top: 30px;
  padding: 25px;
  border-radius: 18px;
  background: rgba(108, 63, 255, 0.08);
  border: 1px solid rgba(108, 63, 255, 0.2);
}

.tax-box h2 {
  color: #00ff95;
}

/* bônus */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.bonus-item {
  font-size: 13px;
  color: #cfcfe6;
}

/* botão */
.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 30px;
}



/* =========================
   GARANTE HAMBURGER VISÍVEL
========================= */


/* desktop only helper */
.desktop-only {
  display: inline-block;
}

/* mobile CTA dentro do menu */
.mobile-cta {
  margin-top: 10px;
}

/* =========================
   RESPONSIVO REAL
========================= */

@media (max-width: 900px) {

  .hero-container,
  .features-grid,
  .steps-container,
  .testimonial-grid,
  .pricing-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
  }

  /* MENU MOBILE */
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #0d0d19;
    padding: 25px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 999;
  }

  .menu.mobile-active {
    display: flex;
  }

  /* BOTÕES DESKTOP SOMEM */
  .desktop-only {
    display: none;
  }

  /* HAMBURGER APARECE */
  .menu-toggle {
    display: block;
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
}

/* ===========================
   BLOCO DE PREÇO
=========================== */

.price-highlight{

    text-align:center;

}

.preco-antigo{

    display:inline-block;

    color:#8f8f8f;

    font-size:22px;

    margin-bottom:8px;

    position:relative;

    font-weight:500;

}

.preco-antigo::after{

    content:"";

    position:absolute;

    left:-4px;

    right:-4px;

    top:50%;

    height:3px;

    background:#ff3d57;

    transform:rotate(-6deg);

    border-radius:20px;

}

.price-highlight h1{

    font-size:64px;

    font-weight:800;

    color:#ffffff;

    line-height:1;

    margin:15px 0;

}

.gratis{

    font-size:72px !important;

    color:#24d366 !important;

    text-shadow:
        0 0 18px rgba(36,211,102,.35);

}

.badge-price{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:999px;

    background:linear-gradient(90deg,#ff8a00,#ff4d00);

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

    animation:pulseBadge 2s infinite;

}

.subtitle{

    max-width:700px;

    margin:25px auto 0;

    font-size:18px;

    line-height:1.7;

    color:#b8b8c5;

}

/* ===========================
CONTADOR PROMOÇÃO
===========================*/

.promo-timer{

    margin-top:35px;

    text-align:center;

}

.promo-timer>small{

    display:block;

    margin-bottom:18px;

    color:#ffd56b;

    font-size:15px;

    letter-spacing:1px;

    text-transform:uppercase;

}

#countdown{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.time-box{

    min-width:95px;

    padding:18px;

    border-radius:18px;

    background:#0f1322;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 12px 30px rgba(0,0,0,.35);

}

.time-box span{

    display:block;

    font-size:38px;

    font-weight:800;

    color:#fff;

}

.time-box small{

    display:block;

    margin-top:8px;

    color:#b8b8c5;

    font-size:13px;

    text-transform:uppercase;

}