:root {
  --bg: #0b0f19;
  --bg-alt: #10151f;
  --surface: #141a26;
  --border: #232b3a;
  --text: #e7ebf3;
  --text-muted: #9aa5b8;
  --accent: #22d3ae;
  --accent-2: #7c8cff;
  --radius: 14px;
  --container: 1160px;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(34,211,174,0.10), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(124,140,255,0.10), transparent 40%);
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(11,15,25,0.75);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.scrolled {
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }
.nav__cta {
  background: var(--accent);
  color: #06120f !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav__cta:hover { opacity: 0.9; color: #06120f !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  z-index: 1;
}
.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 22px;
}
.highlight { color: var(--accent); }
.hero__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn--primary {
  background: var(--accent);
  color: #06120f;
}
.btn--primary:hover { transform: translateY(-2px); opacity: 0.92; }
.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  max-width: 720px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--accent);
}
.stat span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}
.section--alt { background: var(--bg-alt); }
.section-label {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-bottom: 24px;
}
.section-text {
  color: var(--text-muted);
  max-width: 700px;
  font-size: 1.03rem;
  margin-bottom: 48px;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.about-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.about-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service-num {
  display: inline-block;
  font-family: var(--font-head);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tags li {
  font-size: 0.72rem;
  color: var(--accent-2);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.timeline-step {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}
.timeline-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.timeline-step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.timeline-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Diferenciais */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.diff-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.diff-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Contact */
.contact__inner { text-align: center; }
.contact__inner h2 { margin-left: auto; margin-right: auto; }
.contact__inner .section-text { margin-left: auto; margin-right: auto; }
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.contact-email {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero grid + placar */
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.placar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.placar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.placar__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}
.placar__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.placar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(34,211,174,0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,211,174,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(34,211,174,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,211,174,0); }
}
.placar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.placar__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.placar__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.placar__value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.placar__delta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.placar__bars { display: flex; flex-direction: column; gap: 10px; }
.placar__bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.placar__bar-track {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.placar__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .4s ease;
}
.placar__bar-fill--alt { background: var(--accent-2); }
.placar__updated {
  margin-top: 16px;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Resultados */
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.numero-card {
  text-align: center;
  padding: 24px;
}
.numero-valor {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.numero-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Planos */
.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pacote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pacote-card--popular {
  border-color: var(--accent);
}
.pacote-badge {
  position: absolute;
  top: 0; right: 20px;
  transform: translateY(-50%);
  background: var(--accent);
  color: #06120f;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.pacote-nome {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.pacote-preco {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pacote-preco span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pacote-preco--custom { font-size: 1.3rem; }
.pacote-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  min-height: 60px;
}
.pacote-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  flex-grow: 1;
}
.pacote-items li {
  font-size: 0.82rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pacote-items .check { color: var(--accent); flex-shrink: 0; }
.pacote-items .item-off { color: var(--text-muted); font-size: 0.78rem; }
.pacote-cta {
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}
.pacote-cta--outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.pacote-cta--outline:hover { border-color: var(--accent); }
.pacote-cta--solid {
  background: var(--accent);
  color: #06120f;
}
.pacote-cta--solid:hover { opacity: 0.9; }
.pacotes-nota {
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Avulsos */
.avulsos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.avulso-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.avulso-card--destaque { border-color: var(--accent); }
.avulso-nome {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.avulso-nome--destaque { color: var(--accent); }
.avulso-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.avulso-preco {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.avulso-prazo {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.avulso-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

/* FAQ */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}
.faq-item.is-open .faq-a { max-height: 320px; padding-bottom: 20px; }

/* Contato — grid + formulário */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
.contact__info h2 { margin-bottom: 16px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.contact__icon {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact__item a { color: var(--text); font-weight: 600; }
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-optional { font-weight: 400; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-submit { width: 100%; border: none; cursor: pointer; margin-bottom: 10px; }
.form-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success h3 { font-family: var(--font-head); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .services-grid, .timeline, .diff-grid,
  .pacotes-grid, .avulsos-grid, .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__grid, .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .about-grid, .services-grid, .timeline, .diff-grid,
  .pacotes-grid, .avulsos-grid, .numeros-grid {
    grid-template-columns: 1fr;
  }
  .hero__stats { gap: 28px; }
}
