/* ==========================================================================
   Adalberto Almeida — Sistema visual das landing pages por segmento
   Base: /gestor-de-trafego-recife/lp01.html
   Este arquivo é compartilhado por todas as páginas de nicho.
   Para adicionar um novo nicho, basta criar o HTML e definir --accent.
   ========================================================================== */

:root {
  --bg-black: #02050d;
  --bg-dark: #050b17;
  --bg-navy: #071224;
  --bg-card: #081a33;
  --bg-card-soft: #0b203d;
  --blue: #0077ff;
  --blue-2: #0057ff;
  --blue-3: #00a3ff;
  --blue-soft: rgba(0, 119, 255, 0.18);
  --blue-border: rgba(0, 119, 255, 0.55);
  --white: #ffffff;
  --text: #f4f7ff;
  --muted: #aeb8cc;
  --line: rgba(0, 119, 255, 0.28);
  --line-soft: rgba(255, 255, 255, 0.09);
  --radius: 22px;
  --shadow-blue: 0 0 42px rgba(0, 119, 255, 0.38);
  --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;

  /* Cor de apoio do segmento. Cada página sobrescreve no <html data-nicho>. */
  --accent: #00a3ff;
  --accent-soft: rgba(0, 163, 255, 0.14);
  --accent-line: rgba(0, 163, 255, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 75% 12%, rgba(0, 119, 255, 0.22), transparent 28%),
    radial-gradient(circle at 5% 42%, rgba(0, 87, 255, 0.17), transparent 34%),
    linear-gradient(180deg, #02050d 0%, #050b17 44%, #02050d 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-tight {
  padding: 54px 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 800;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--blue-3);
  outline-offset: 3px;
}

/* ============================ HEADER ============================ */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2, 5, 13, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  font-size: 22px;
}

.logo-img {
  height: 46px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.menu a {
  opacity: 0.86;
  transition: 0.2s ease;
}

.menu a:hover {
  opacity: 1;
  color: var(--blue-3);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 22px;
  cursor: pointer;
}

/* ============================ BOTÕES ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: var(--white);
  box-shadow: 0 14px 38px rgba(0, 119, 255, 0.42);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(0, 119, 255, 0.55);
}

.btn-outline {
  border-color: var(--blue-border);
  background: rgba(2, 10, 24, 0.7);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(0, 119, 255, 0.12);
  transform: translateY(-3px);
}

/* ============================ HERO ============================ */

.hero {
  padding: 132px 0 42px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 25%, rgba(0, 119, 255, 0.13) 25% 34%, transparent 34% 100%),
    radial-gradient(circle at 92% 26%, rgba(0, 119, 255, 0.25), transparent 28%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 96px;
  width: 260px;
  height: 260px;
  opacity: 0.5;
  background-image: radial-gradient(var(--blue) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  flex: 0 0 auto;
}

h1 {
  max-width: 700px;
  font-size: clamp(33px, 4.5vw, 53px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

.blue-text {
  color: var(--blue);
  text-shadow: 0 0 22px rgba(0, 119, 255, 0.36);
}

.accent-text {
  color: var(--accent);
  text-shadow: 0 0 22px var(--accent-soft);
}

.hero-subtitle {
  max-width: 580px;
  color: var(--text);
  font-size: 19px;
  margin-bottom: 14px;
}

.hero-description {
  max-width: 570px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-notes {
  display: grid;
  gap: 9px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--blue-3);
  color: var(--blue-3);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  flex: 0 0 auto;
}

/* Visual do hero: foto + cartão do segmento */

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 560px;
}

.photo-frame {
  position: relative;
  width: min(430px, 100%);
  height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-glow {
  position: absolute;
  inset: 70px 18px 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.5), rgba(0, 119, 255, 0.08) 52%, transparent 70%);
  filter: blur(4px);
}

.photo-outline {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1.5px solid rgba(0, 119, 255, 0.65);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 78px;
  opacity: 0.7;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 410px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 34px rgba(0, 119, 255, 0.28));
}

.niche-motif {
  position: absolute;
  left: -6px;
  top: 42px;
  z-index: 1;
  width: 150px;
  height: 150px;
  color: var(--accent);
  opacity: 0.35;
  filter: drop-shadow(0 0 20px var(--accent-soft));
  pointer-events: none;
}

.niche-motif svg {
  width: 100%;
  height: 100%;
  display: block;
}

.result-card {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 4;
  width: 268px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--accent-line);
  background: rgba(5, 11, 23, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.result-card .icon-big {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 30px;
}

.result-card strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.result-card small {
  color: var(--muted);
  font-size: 12px;
}

/* Faixa de plataformas do hero */

.platforms {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  border: 1px solid var(--blue-border);
  border-radius: 14px;
  background: rgba(2, 10, 24, 0.65);
  box-shadow: 0 0 28px rgba(0, 119, 255, 0.17);
  padding: 18px 24px;
  display: grid;
  gap: 0;
}

.platform {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.platform:last-child {
  border-right: 0;
}

.platform img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

/* ============================ TÍTULOS DE SEÇÃO ============================ */

.section-title {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.09em;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--muted);
  font-size: 16px;
}

/* ============================ CAIXAS E CARDS ============================ */

.box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(8, 26, 51, 0.72), rgba(5, 11, 23, 0.65));
}

.box-soft {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 34px;
  background: rgba(5, 11, 23, 0.45);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.card {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 26, 51, 0.7), rgba(5, 11, 23, 0.78));
  padding: 26px;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-border);
  box-shadow: 0 18px 52px rgba(0, 119, 255, 0.16);
}

.card h3 {
  font-size: 19px;
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.card li {
  color: var(--muted);
  font-size: 14px;
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  color: var(--blue-3);
  font-size: 24px;
  margin-bottom: 18px;
  background: rgba(0, 119, 255, 0.07);
  box-shadow: 0 0 22px rgba(0, 119, 255, 0.22);
}

.icon-circle.accent {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 22px var(--accent-soft);
}

.png-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
  display: block;
}

.icon-circle .png-icon,
.icon-big .png-icon,
.service-icon .png-icon {
  width: 0.9em;
  height: 0.9em;
}

.png-icon-small {
  width: 12px;
  height: 12px;
}

.png-icon-menu {
  width: 22px;
  height: 22px;
}

.png-icon-float {
  width: 28px;
  height: 28px;
}

.png-icon-plus {
  width: 18px;
  height: 18px;
}

.service-icon {
  color: var(--blue);
  font-size: 42px;
  margin-bottom: 16px;
}

/* ============================ DESTAQUE / FRASE-CHAVE ============================ */

.statement {
  border: 1px solid var(--accent-line);
  border-radius: 18px;
  padding: 32px 34px;
  background:
    radial-gradient(circle at 90% 8%, var(--accent-soft), transparent 40%),
    linear-gradient(180deg, rgba(8, 26, 51, 0.8), rgba(5, 11, 23, 0.7));
  display: grid;
  gap: 12px;
}

.statement h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.statement p {
  color: var(--muted);
  font-size: 16px;
  max-width: 900px;
}

/* ============================ PROCESSO (5 ETAPAS) ============================ */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  position: relative;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 26, 51, 0.7), rgba(5, 11, 23, 0.78));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  box-shadow: var(--shadow-blue);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

/* ============================ FUNIL DO SEGMENTO ============================ */

.funnel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.funnel-step {
  position: relative;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--line-soft);
  border-right: 0;
  background: linear-gradient(180deg, rgba(8, 26, 51, 0.66), rgba(5, 11, 23, 0.74));
}

.funnel-step:first-child {
  border-radius: 14px 0 0 14px;
}

.funnel-step:last-child {
  border-right: 1px solid var(--line-soft);
  border-radius: 0 14px 14px 0;
  background:
    radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, rgba(8, 26, 51, 0.8), rgba(5, 11, 23, 0.8));
  border-color: var(--accent-line);
}

.funnel-step::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  background: transparent;
  z-index: 2;
  opacity: 0.85;
}

.funnel-step:last-child::after {
  display: none;
}

.funnel-index {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.funnel-step strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.funnel-step span.desc {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* ============================ CHIPS (EXEMPLOS DE CAMPANHA) ============================ */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

/* ============================ MÉTRICAS ============================ */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.metric {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
}

.metric strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(0, 119, 255, 0.06);
  color: var(--muted);
  font-size: 14px;
}

/* ============================ CHECKLIST DA ANÁLISE ============================ */

.cta-strategy-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 119, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(8, 26, 51, 0.86), rgba(5, 11, 23, 0.76));
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  position: relative;
}

.cta-strategy-box::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.16);
  filter: blur(12px);
  pointer-events: none;
}

.cta-strategy-content {
  position: relative;
  z-index: 2;
}

.cta-strategy-content h2 {
  max-width: 680px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.07;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.cta-strategy-content > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.cta-strategy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cta-strategy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
}

.cta-strategy-item > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  flex: 0 0 auto;
  margin-top: 2px;
}

.cta-strategy-card {
  position: relative;
  z-index: 2;
  border: 1px solid var(--blue-border);
  border-radius: 18px;
  padding: 28px;
  background: rgba(2, 10, 24, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.cta-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 119, 255, 0.13);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  font-size: 34px;
}

.cta-strategy-card h3 {
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.cta-strategy-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.cta-strategy-card .btn {
  width: 100%;
  margin-bottom: 14px;
}

.cta-strategy-card small {
  display: block;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

/* ============================ CTA FINAL ============================ */

.cta-final {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 46px;
}

.cta-final h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.cta-final p {
  color: var(--muted);
  font-size: 16px;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

/* ============================ FAQ ============================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 54px;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question > span {
  color: var(--white);
  font-size: 24px;
  transition: 0.2s ease;
  flex: 0 0 auto;
}

.faq-answer {
  color: var(--muted);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 18px 18px;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-question > span {
  transform: rotate(45deg);
  color: var(--accent);
}

/* ============================ OUTROS SEGMENTOS ============================ */

.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.niche-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 700;
  transition: 0.22s ease;
}

.niche-link:hover {
  border-color: var(--blue-border);
  background: rgba(0, 119, 255, 0.09);
  transform: translateY(-3px);
}

.niche-link i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
  opacity: 0.9;
}

.niche-link.is-current {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  pointer-events: none;
}

/* ============================ GOOGLE PARTNER ============================ */

.partner-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 119, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(8, 26, 51, 0.76), rgba(5, 11, 23, 0.72));
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.partner-box h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.partner-box p {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 119, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 30px rgba(0, 119, 255, 0.18);
  transition: 0.25s ease;
}

.partner-badge:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  background: rgba(0, 119, 255, 0.1);
}

.partner-badge img {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================ RODAPÉ ============================ */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0 36px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(2, 5, 13, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 26px;
}

.footer h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--blue-3);
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  color: var(--white);
  font-size: 26px;
  box-shadow: var(--shadow-blue);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

/* ============================ ANIMAÇÕES DISCRETAS ============================ */

/* O estado inicial só é aplicado quando o JS está ativo (classe em <html>),
   para que o conteúdo continue visível sem JavaScript. */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-anim .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .card:hover,
  .niche-link:hover {
    transform: none;
  }
}

/* ============================ RESPONSIVO ============================ */

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-visual {
    min-height: auto;
    order: 2;
  }

  .cta-final,
  .cta-strategy-box,
  .partner-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-4,
  .grid-5,
  .steps,
  .metrics-grid,
  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .funnel {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 10px;
  }

  .funnel-step,
  .funnel-step:first-child,
  .funnel-step:last-child {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
  }

  .funnel-step:last-child {
    border-color: var(--accent-line);
  }

  .funnel-step::after {
    right: 50%;
    top: auto;
    bottom: -14px;
    transform: translateX(50%) rotate(135deg);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: rgba(5, 11, 23, 0.96);
    border: 1px solid var(--blue-border);
    border-radius: 18px;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav > .btn {
    display: none;
  }

  .hero {
    padding-top: 108px;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 70% 4%, rgba(0, 119, 255, 0.22), transparent 24%),
      radial-gradient(circle at 10% 28%, rgba(0, 87, 255, 0.14), transparent 30%),
      linear-gradient(180deg, #02050d 0%, #050b17 46%, #02050d 100%);
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .header {
    background: rgba(2, 5, 13, 0.94);
  }

  .nav {
    height: 64px;
  }

  .logo-img {
    height: 36px;
    max-width: 170px;
  }

  .menu {
    top: 64px;
    left: 14px;
    right: 14px;
    padding: 18px;
  }

  .menu a {
    width: 100%;
    padding: 10px 0;
  }

  .section,
  .section-tight {
    padding: 44px 0;
  }

  .hero {
    padding: 88px 0 26px;
  }

  .hero::after {
    width: 150px;
    height: 150px;
    top: 72px;
    right: -30px;
    opacity: 0.3;
  }

  .eyebrow {
    min-height: 28px;
    padding: 0 12px;
    font-size: 10px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    font-size: 12px;
    border-radius: 9px;
  }

  .hero-note {
    font-size: 13px;
  }

  .hero-visual {
    display: grid;
    place-items: center;
    min-height: auto;
  }

  .photo-frame {
    width: 100%;
    height: 340px;
  }

  .photo-glow {
    inset: 40px 16px 20px;
    opacity: 0.75;
  }

  .photo-outline {
    width: 260px;
    height: 260px;
    top: 40px;
  }

  .hero-photo {
    width: 270px;
    max-height: 330px;
  }

  .niche-motif {
    width: 92px;
    height: 92px;
    top: 16px;
    left: 0;
    opacity: 0.28;
  }

  .result-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
  }

  .result-card .icon-big {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .platforms {
    margin-top: 22px;
    padding: 12px;
    border-radius: 12px;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }

  .platform {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 10px;
    border: 1px solid var(--line-soft);
    border-radius: 9px;
    font-size: 12px;
    background: rgba(0, 119, 255, 0.055);
  }

  .platform img {
    width: 20px;
    height: 20px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2,
  .cta-final h2,
  .cta-strategy-content h2,
  .statement h2 {
    font-size: 26px;
    line-height: 1.12;
  }

  .section-title p,
  .cta-final p {
    font-size: 14px;
  }

  .section-kicker {
    font-size: 11px;
  }

  .box,
  .box-soft,
  .statement,
  .cta-strategy-box,
  .partner-box {
    padding: 18px;
    border-radius: 14px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .steps,
  .faq-grid,
  .metrics-grid,
  .niches-grid,
  .cta-strategy-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card,
  .step {
    padding: 18px;
    border-radius: 12px;
  }

  .card h3,
  .step h3 {
    font-size: 17px;
  }

  .card p,
  .step p {
    font-size: 13.5px;
  }

  .icon-circle {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .step {
    text-align: left;
  }

  .chip {
    font-size: 13px;
    min-height: 38px;
    padding: 0 13px;
  }

  .faq-question {
    min-height: 50px;
    font-size: 13.5px;
    padding: 12px 14px;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 14px 14px;
  }

  .cta-final {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 32px;
  }

  .footer {
    padding: 30px 0 86px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
    font-size: 22px;
  }
}
