:root {
  color-scheme: dark;
  --bg: #050913;
  --bg-2: #08111f;
  --panel: rgba(12, 22, 18, .86);
  --panel-2: rgba(16, 29, 24, .94);
  --text: #f6fff8;
  --muted: #a5b5ad;
  --line: rgba(82, 160, 255, .22);
  --line-strong: rgba(82, 160, 255, .46);
  --green: #4ea1ff;
  --green-2: #3be3ff;
  --blue: #2f8cff;
  --dark: #050806;
  --shadow: 0 22px 70px rgba(0, 0, 0, .38);
  --radius: 10px;
  --max: 1180px;
  --display: "Arial Black", Impact, "Segoe UI", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: Consolas, "Roboto Mono", "Courier New", monospace;
  font-family: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 140, 255, .22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(59, 227, 255, .14), transparent 30%),
    linear-gradient(180deg, #07101d, #04070c 44%, #07101a);
  color: var(--text);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.light {
  --bg: #f6f8f4;
  --bg-2: #edf4fb;
  --panel: rgba(255, 255, 255, .88);
  --panel-2: rgba(248, 252, 248, .96);
  --text: #0b1611;
  --muted: #52645a;
  --line: rgba(24, 96, 170, .16);
  --line-strong: rgba(24, 96, 170, .34);
  --dark: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 140, 255, .16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(59, 227, 255, .10), transparent 30%),
    linear-gradient(180deg, #f7faff, #edf4fb);
}

.site-bg {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.site-bg::before {
  background:
    linear-gradient(rgba(82, 160, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 160, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  opacity: .85;
  position: absolute;
}

.site-bg::after {
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 4px);
  content: "";
  inset: 0;
  opacity: .22;
  position: absolute;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button,
.filter {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 10, .76);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  min-height: 60px;
  padding: 9px clamp(14px, 4vw, 40px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(47, 140, 255, .28);
  color: #051006;
  display: inline-flex;
  font-family: var(--display);
  font-size: 17px;
  height: 36px;
  justify-content: center;
  letter-spacing: -1px;
  width: 36px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 950;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 1px;
}

.nav {
  align-items: center;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 3px;
  justify-self: center;
  padding: 4px;
}

.nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  padding: 8px 12px;
}

.nav a:hover {
  background: rgba(47, 140, 255, .12);
  color: var(--text);
}

.theme-toggle {
  background: rgba(47, 140, 255, .08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  height: 35px;
  padding: 0 12px;
}

.section,
.section-band {
  padding: clamp(34px, 5vw, 58px) clamp(14px, 4vw, 42px);
}

.section {
  margin-inline: auto;
  max-width: var(--max);
}

.section-band {
  position: relative;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  margin-inline: auto;
  max-width: 1320px;
  min-height: 560px;
  padding-top: clamp(30px, 4vw, 48px);
}

.hero-copy {
  max-width: 620px;
}

.hero-code {
  background: rgba(47, 140, 255, .10);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.hero-status span,
.tag,
.product-meta {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  padding: 6px 9px;
}

.hero-status span:first-child {
  color: var(--green);
}

.eyebrow {
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -2px;
  line-height: .92;
  margin-bottom: 14px;
  max-width: 650px;
}

h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -1.4px;
  line-height: .98;
  margin-bottom: 10px;
}

h3 {
  font-size: 17px;
  line-height: 1.15;
  margin-bottom: 6px;
}

p {
  color: var(--muted);
  line-height: 1.52;
}

.hero-text {
  color: #d5e2da;
  font-size: 15.5px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 14px;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  transition: box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.button:hover,
.text-button:hover,
.filter:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border: 1px solid rgba(82, 160, 255, .72);
  box-shadow: 0 12px 30px rgba(47, 140, 255, .20);
  color: #051006;
}

.button.ghost {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  color: var(--text);
}

.button.large {
  min-width: 180px;
}

.limit-cards {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 12px 0 10px;
  max-width: 540px;
}

.limit-cards div,
.stats div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.limit-cards div {
  padding: 11px;
}

.limit-cards span {
  color: var(--green);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.limit-cards strong {
  color: var(--text);
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 38px);
  line-height: .92;
}

.limit-cards small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

.stats {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 540px;
}

.stats div {
  padding: 10px;
}

.stats dt {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
}

.stats dd {
  color: var(--muted);
  font-size: 11px;
  margin: 2px 0 0;
}

.hero-panel {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
  padding: 12px;
}

.panel-top,
.panel-metrics {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-top {
  margin-bottom: 10px;
}

.panel-top strong {
  font-size: 14px;
}

.panel-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.hero-panel img {
  aspect-ratio: 1.9;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.offer-card {
  align-self: center;
  padding: 22px;
}

.offer-card .panel-top {
  margin-bottom: 18px;
}

.offer-card h2 {
  font-family: var(--body);
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -1px;
  line-height: 1;
  margin: 12px 0 12px;
}

.offer-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.offer-card ul {
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 16px;
  padding: 14px 0 14px 18px;
}

.offer-badge {
  background: rgba(47, 140, 255, .12);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.offer-price {
  margin-bottom: 16px;
}

.offer-price span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.offer-price strong {
  color: var(--green);
  display: block;
  font-size: 28px;
}

.panel-metrics {
  gap: 8px;
  margin-top: 10px;
}

.panel-metrics div {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex: 1;
  padding: 9px;
}

.panel-metrics span {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 850;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.panel-metrics strong {
  font-size: 14px;
}

.spend-rail {
  display: none;
}

.strip {
  border-block: 1px solid var(--line);
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 9px clamp(14px, 4vw, 42px);
  position: relative;
  white-space: nowrap;
}

.strip::before,
.strip::after {
  color: var(--muted);
  content: "BM Meta com gasto 1k  •  BM Facebook com gasto 5k  •  BM com gasto 10k  •  BM com gasto 100k  •  Gerenciador de Negocios  •  Business Manager  •";
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 0;
  animation: driftText 22s linear infinite;
}

.strip::after {
  color: var(--green);
}

.strip span {
  animation: drift 22s linear infinite;
  background: rgba(47, 140, 255, .08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 11px;
}

.strip span:nth-child(odd) {
  color: var(--green);
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-720px); }
}

@keyframes driftText {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.section-heading {
  margin-bottom: 18px;
  max-width: 740px;
}

.section-heading.compact {
  max-width: 640px;
}

#catalogo .section-heading,
.process .section-heading,
.audience .section-heading,
.proof .section-heading,
.faq .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.filters {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
}

.filter {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
}

.filter.active {
  background: var(--text);
  color: var(--dark);
}

.product-grid,
.audience-grid,
.steps,
.proof-grid {
  display: grid;
  gap: 10px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-page .site-header {
  background: rgba(7, 13, 20, .82);
}

.catalog-hero {
  padding-bottom: 18px;
  padding-top: clamp(44px, 7vw, 86px);
  text-align: left;
}

.catalog-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 12px;
}

.catalog-hero p {
  max-width: 620px;
}

.catalog-section {
  padding-top: 8px;
}

.catalog-section .filters {
  margin-bottom: 18px;
}

.catalog-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-page .footer {
  margin: 40px auto 0;
  max-width: var(--max);
}

.product-card,
.audience-grid article,
.steps article,
.proof-grid blockquote,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 252px;
  padding: 14px;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
  transform: translateY(-2px);
}

.product-card.featured {
  background: linear-gradient(145deg, rgba(47, 140, 255, .12), var(--panel-2));
  border-color: var(--line-strong);
}

.product-top {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.tag {
  background: rgba(47, 140, 255, .10);
  color: var(--green);
}

.product-meta {
  align-self: flex-start;
  color: #c9d8cf;
  padding-block: 5px;
}

.spend {
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
}

.product-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.product-card ul {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  padding-left: 16px;
}

.product-actions {
  display: grid;
  gap: 7px;
  grid-template-columns: .82fr 1fr;
  margin-top: auto;
}

.text-button {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-height: 39px;
  padding: 9px 10px;
}

.audience,
.proof {
  background: rgba(255, 255, 255, .025);
}

.audience-grid,
.steps,
.proof-grid {
  margin-inline: auto;
  max-width: var(--max);
}

.audience-grid,
.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid article,
.steps article,
.proof-grid blockquote {
  min-height: 132px;
  padding: 15px;
}

.audience-grid article p,
.steps article p,
.proof-grid p {
  font-size: 13px;
  margin-bottom: 0;
}

.steps article span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 20px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid blockquote {
  margin: 0;
}

.proof-grid cite {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details {
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  font-size: 13px;
  margin: 9px 0 0;
}

.cta {
  align-items: center;
  background: linear-gradient(90deg, rgba(47, 140, 255, .14), rgba(59, 227, 255, .06)), var(--bg-2);
  border-block: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
  text-align: center;
}

.cta > div {
  max-width: 740px;
}

.cta p {
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr .9fr 1.25fr;
  padding: 22px clamp(14px, 4vw, 42px);
}

.footer p {
  margin-bottom: 0;
}

.footer-links {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
}

.footer-links a,
.footer-button {
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.footer-button {
  background: transparent;
  border: 0;
  padding: 0;
}

.legal {
  font-size: 12px;
}

.product-dialog {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: var(--text);
  max-width: 520px;
  padding: 0;
  width: calc(100% - 28px);
}

.product-dialog::backdrop {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, .66);
}

.dialog-close {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  height: 34px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
}

.dialog-body {
  padding: 23px;
}

.dialog-body h2 {
  padding-right: 38px;
}

.dialog-body ul {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  padding-left: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}

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

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    max-width: 780px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .product-grid,
  .audience-grid,
  .steps,
  .proof-grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 56px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .section,
  .section-band {
    padding-inline: 14px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-actions .button,
  .stats,
  .limit-cards,
  .product-grid,
  .audience-grid,
  .steps,
  .proof-grid,
  .footer,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .cta .button {
    width: 100%;
  }

  .hero-panel img {
    aspect-ratio: 1.35;
  }

  .filters {
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .filter {
    border-radius: var(--radius);
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-metrics {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
