/* Orbitron carregado via Google Fonts no index.html */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --surface: #0f0f0f;
  --surface2: #141414;
  --border: #1e1e1e;
  --border2: #2a2a2a;
  --white: #ffffff;
  --silver-light: #ebebeb;
  --silver: #b8b8b8;
  --silver-dark: #777777;
  --muted: #555555;
  --green: #25D366;
  --silver-grad: linear-gradient(120deg, #909090 0%, #e8e8e8 45%, #c0c0c0 65%, #888 100%);
  --red: #DC2626;
  --red-dark: #b91c1c;
  --red-glow: rgba(220, 38, 38, 0.18);
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #2a2a2a #080808;
  scrollbar-width: thin;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 10;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver-light);
  border: 1px solid var(--border2);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--bg);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 3;
  width: 55%;
  padding: 130px 6% 90px;
}

.hero-chip {
  display: inline-block;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--red);
  padding: 5px 13px;
  border-radius: 2px;
  margin-bottom: 36px;
}

.hero-headline {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.97;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-headline .silver-text {
  background: var(--silver-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.75;
  max-width: 430px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--white);
  color: var(--bg);
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.25s;
}

.btn-fill:hover {
  background: var(--silver-light);
  transform: translateY(-2px);
}

.btn-text {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-text:hover {
  color: var(--silver);
  border-color: var(--silver-dark);
}

/* Watermark */
.hero-watermark {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 7rem);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

/* Hero photo */
.hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: #080808;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  opacity: 0.92;
}

/* Blend edges into dark bg */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #080808 0%, rgba(8,8,8,0) 35%),
    linear-gradient(to top, #080808 0%, rgba(8,8,8,0) 18%),
    linear-gradient(to left, #080808 0%, rgba(8,8,8,0) 15%);
  z-index: 1;
}

/* ─── SECTION BASE ─── */
section { padding: 96px 6%; }

.s-eyebrow {
  display: block;
  text-align: center;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.s-title {
  text-align: center;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.s-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.s-divider {
  width: 48px;
  height: 2px;
  margin: 0 auto 18px;
  background: var(--red);
  border-radius: 1px;
}

/* ─── FEATURES ─── */
#metodo {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.feat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.feat.visible {
  opacity: 1;
  transform: translateY(0);
}

.feat:hover {
  border-color: var(--silver-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6), 0 0 0 1px rgba(184,184,184,0.1);
}

.feat-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--silver);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-body h3 {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  color: var(--white);
}

.feat-body p {
  font-size: 0.845rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

.feat-full { grid-column: 1 / -1; }

/* ─── RESULTS ─── */
#resultados {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.result-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.result-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.result-card:hover {
  border-color: var(--silver-dark);
  transform: translateY(-4px);
}

.result-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.result-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}

.result-tag {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  border: 1px solid var(--border2);
}

.result-tag.antes { color: var(--muted); }
.result-tag.depois {
  background: var(--silver-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-arrow {
  width: 14px;
  height: 14px;
  stroke: var(--border2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── RELATOS ─── */
#relatos {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* Grid 6 colunas: linha 1 = 3 cards (span 2 cada), linha 2 = 2 cards centralizados */
.relatos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.relato-card:nth-child(1) { grid-column: 1 / span 2; }
.relato-card:nth-child(2) { grid-column: 3 / span 2; }
.relato-card:nth-child(3) { grid-column: 5 / span 2; }
.relato-card:nth-child(4) { grid-column: 2 / span 2; }
.relato-card:nth-child(5) { grid-column: 4 / span 2; }

/* Card de screenshot de relato real */
.relato-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.relato-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.relato-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(220,38,38,0.1);
}

/* Badge de verificado no topo do card */
.relato-verified {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}

.relato-verified svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
  flex-shrink: 0;
}

.relato-verified span {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* Imagem do screenshot — mostra completa, sem corte */
.relato-screenshot {
  width: 100%;
  height: auto;
  display: block;
  background: var(--surface2);
}

/* Placeholder quando não há imagem */
.relato-placeholder {
  flex: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface2);
  color: var(--border2);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px;
}

.relato-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--border2);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Rodapé do card */
.relato-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

.relato-origem {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 300;
}

.relato-stars {
  display: flex;
  gap: 2px;
}

.relato-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--red);
}

@media (max-width: 900px) {
  .relatos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .relato-card:nth-child(n) { grid-column: 1 / -1; }
}

/* ─── PRICING ─── */
#planos { background: var(--bg); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: end;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(28px);
}

.plan.visible { opacity: 1; transform: translateY(0); }

.plan:hover {
  border-color: var(--silver-dark);
  transform: translateY(-5px);
}

.plan.featured {
  border-color: #444;
  background: var(--surface2);
  padding-top: 44px;
  padding-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.plan.featured.visible { transform: translateY(0); }
.plan.featured:hover { transform: translateY(-6px); }

.plan.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.plan-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--red);
  border-radius: 2px;
  margin-bottom: 20px;
  background: var(--red);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.plan-period-label {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.plan-price sup {
  font-size: 0.9rem;
  font-weight: 600;
  vertical-align: super;
}

.plan-price .cents {
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-duration {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}

.plan-sep {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.plan-list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.845rem;
  color: var(--silver-dark);
  font-weight: 300;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.plan-list li:last-child { border-bottom: none; }
.plan-list li.highlight { color: var(--silver-light); font-weight: 400; }

.plan-list li svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  stroke: var(--silver);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 1px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.22s;
}

.plan-cta-outline {
  border: 1px solid var(--border2);
  color: var(--silver);
}

.plan-cta-outline:hover {
  border-color: var(--silver);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.plan-cta-white {
  background: var(--white);
  color: var(--bg);
}

.plan-cta-white:hover {
  background: var(--silver-light);
}

/* ─── CTA FINAL ─── */
#cta {
  position: relative;
  padding: 120px 6%;
  overflow: hidden;
  text-align: center;
}

#cta .bg-kv {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/wallpaper.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

#cta .bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.97) 80%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 44px;
  background: var(--green);
  color: var(--white);
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.22s, transform 0.25s, box-shadow 0.25s;
}

.btn-whatsapp:hover {
  background: #1fba57;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.28);
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer img {
  height: 28px;
  width: auto;
  opacity: 0.5;
}

footer p {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .plan.featured { order: -1; }
}

@media (max-width: 800px) {
  .hero-left {
    width: 100%;
    padding: 120px 6% 56vw;
    text-align: center;
  }

  .hero-chip { display: inline-block; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }

  .hero-photo {
    top: auto;
    width: 100%;
    height: 55vw;
    min-height: 280px;
  }

  .hero-photo::before {
    background:
      linear-gradient(to bottom, #080808 0%, rgba(8,8,8,0) 30%),
      linear-gradient(to top, #080808 0%, rgba(8,8,8,0) 15%);
  }

  .features-grid { grid-template-columns: 1fr; }
  .feat-full { grid-column: auto; }

  nav { padding: 0 5%; }
}

@media (max-width: 860px) {
  .results-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 500px) {
  .hero-headline { font-size: 2.6rem; }
  .nav-btn { padding: 8px 14px; font-size: 0.68rem; }
  section { padding: 72px 5%; }
}
