/* ═══════════════════════════════════════════════════════════
   VIMKO — Agência de Marketing Digital & Performance
   Paleta: #1e1e1e (principal) · #0000ff (acento) · #f3f3f3 (claro)
   Tipografia: Helvetica Neue
   ═══════════════════════════════════════════════════════════ */

:root {
  --black: #1e1e1e;
  --black-deep: #141414;
  --blue: #0000ff;
  --blue-soft: rgba(0, 0, 255, 0.55);
  --light: #f3f3f3;
  --white: #ffffff;
  --grey-mid: #8a8a8a;
  --grey-dark: #555;
  --grey-light: #d9d9d9;
  --glass-dark-bg: rgba(255, 255, 255, 0.045);
  --glass-dark-border: rgba(255, 255, 255, 0.11);
  --glass-light-bg: rgba(255, 255, 255, 0.62);
  --glass-light-border: rgba(30, 30, 30, 0.09);
  --radius: 18px;
  --pad-x: clamp(24px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }

img { max-width: 100%; display: block; }

/* ── NAV (glass flutuante) ── */
.nav-wrap {
  position: fixed; top: 14px; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
nav {
  pointer-events: auto;
  width: 100%; max-width: 1080px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 24px;
  background: rgba(30, 30, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.nav-logo {
  font-size: 20px; font-weight: 700; letter-spacing: 0.03em;
  text-transform: lowercase; color: var(--light);
  text-decoration: none; flex-shrink: 0;
}
.nav-logo b { color: var(--blue); font-weight: 700; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(243, 243, 243, 0.75);
  text-decoration: none;
  padding: 8px 14px; border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: #fff; background: var(--blue);
  padding: 11px 22px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 24px rgba(0, 0, 255, 0.45);
  transition: box-shadow 0.25s, transform 0.25s;
}
.nav-cta:hover {
  box-shadow: 0 0 36px rgba(0, 0, 255, 0.7);
  transform: translateY(-1px);
}
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--light); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(20, 20, 20, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 15px; }
  .nav-burger { display: flex; }
  nav { position: relative; }
  nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 480px) {
  .nav-cta { padding: 10px 16px; font-size: 12px; }
}

/* ── GENÉRICOS ── */
section { position: relative; overflow: hidden; }
.section-pad { padding: clamp(80px, 10vw, 150px) var(--pad-x); }
.inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(0, 0, 255, 0.9);
}
.on-light .label {
  border-color: rgba(30, 30, 30, 0.14);
  background: rgba(255, 255, 255, 0.55);
  color: var(--grey-dark);
}
.on-blue .label {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.on-blue .label::before { background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.9); }


/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(140px, 16vh, 200px) var(--pad-x) clamp(48px, 7vw, 90px);
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(0, 0, 255, 0.28), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(0, 0, 255, 0.14), transparent 60%),
    var(--black-deep);
}
#hero::after {
  /* grade sutil de performance */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { max-width: 1180px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-headline {
  font-size: clamp(38px, 6.2vw, 86px);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--light);
  max-width: 950px;
  text-wrap: balance;
}
.hero-headline em {
  font-style: italic; font-weight: 300;
  color: var(--grey-mid);
}
.blue-mark {
  background: var(--blue);
  color: #fff;
  padding: 1px 12px;
  font-style: normal;
  border-radius: 8px;
  box-shadow: 0 0 34px rgba(0, 0, 255, 0.55);
}
.hero-sub {
  margin-top: 30px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300; line-height: 1.65;
  color: #a8a8a8;
  max-width: 620px;
}
.hero-actions {
  margin-top: 44px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.btn-primary {
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--blue); color: #fff;
  padding: 18px 36px; border-radius: 14px;
  text-decoration: none; display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 34px rgba(0, 0, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: box-shadow 0.25s, transform 0.25s;
}
.btn-primary:hover {
  box-shadow: 0 0 52px rgba(0, 0, 255, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.btn-glass {
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--light);
  padding: 18px 32px; border-radius: 14px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.25s;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.hero-note {
  margin-top: 20px;
  font-size: 12.5px; color: var(--grey-mid);
  letter-spacing: 0.03em;
}

/* Faixa de plataformas */
.platforms {
  margin-top: clamp(52px, 7vw, 84px);
  padding: 22px clamp(20px, 3vw, 36px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px 32px; flex-wrap: wrap;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.platforms-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grey-mid);
  flex-basis: 100%;
}
.platform {
  font-size: clamp(13px, 1.4vw, 15px); font-weight: 600;
  letter-spacing: 0.02em; color: rgba(243, 243, 243, 0.72);
  white-space: nowrap;
}
@media (min-width: 760px) {
  .platforms-label { flex-basis: auto; }
}

/* ── SEÇÕES CLARAS ── */
.on-light { background: var(--light); color: var(--black); }
.on-light .section-title { color: var(--black); }

.section-title {
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 780px;
  text-wrap: balance;
}
.section-sub {
  margin-top: 18px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65; color: var(--grey-mid);
  max-width: 560px;
}
.on-light .section-sub { color: #6b6b6b; }

/* ── O PROBLEMA ── */
#problema {
  background:
    radial-gradient(560px 460px at 96% -6%, rgba(0, 0, 255, 0.08), transparent 70%),
    var(--light);
  color: var(--black);
}
.pain-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.pain-card {
  padding: 34px 30px;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius);
  box-shadow:
    0 12px 34px rgba(30, 30, 30, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(30, 30, 30, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.pain-num {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 22px;
  padding: 5px 12px;
  background: rgba(0, 0, 255, 0.07);
  border: 1px solid rgba(0, 0, 255, 0.16);
  border-radius: 999px;
}
.pain-title {
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 700; line-height: 1.3;
  color: var(--black);
}
.pain-desc {
  margin-top: 10px;
  font-size: 14.5px; line-height: 1.65;
  color: #6b6b6b;
}

/* ── A SOLUÇÃO ── */
#solucao {
  background:
    radial-gradient(900px 460px at 90% 0%, rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(20, 20, 20, 0.35), transparent 65%),
    var(--blue);
  color: #fff;
}
.solution-big {
  font-size: clamp(30px, 5vw, 66px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 920px;
  text-wrap: balance;
}
.solution-big span { font-weight: 300; font-style: italic; color: rgba(255, 255, 255, 0.75); }
.solution-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.solution-card {
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.solution-card h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.solution-card p { font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); }

/* ── SERVIÇOS ── */
#servicos {
  background:
    radial-gradient(1000px 560px at 8% 8%, rgba(0, 0, 255, 0.16), transparent 60%),
    var(--black);
}
.services-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 38px 32px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 255, 0.55);
  background: rgba(0, 0, 255, 0.06);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 255, 0.16);
  border: 1px solid rgba(0, 0, 255, 0.4);
  box-shadow: 0 0 22px rgba(0, 0, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  margin-bottom: 26px;
}
.service-icon svg { width: 24px; height: 24px; stroke: #8a8aff; }
.service-name {
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--light);
}
.service-desc {
  margin-top: 12px;
  font-size: 14.5px; line-height: 1.7;
  color: #9c9c9c;
  flex: 1;
}
.service-tags {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.service-tags span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(243, 243, 243, 0.65);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

/* ── SOBRE ── */
#sobre {
  background:
    radial-gradient(620px 520px at -4% 106%, rgba(0, 0, 255, 0.07), transparent 70%),
    var(--light);
  color: var(--black);
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 820px) {
  .about-layout { grid-template-columns: 1fr; }
}
.about-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(30, 30, 30, 0.22);
}
.about-photo img {
  width: 100%; aspect-ratio: 3 / 4;
  object-fit: cover; object-position: top center;
}
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.about-photo-badge {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  padding: 14px 18px;
  background: rgba(30, 30, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
}
.about-photo-badge strong { display: block; font-size: 15px; font-weight: 700; }
.about-photo-badge span { display: block; font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 3px; }
.about-name {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.08;
}
.about-role {
  margin-top: 10px;
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--blue); font-weight: 600;
}
.about-bio {
  margin-top: 26px;
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.75; color: #4a4a4a;
  max-width: 560px;
}
.about-bio + .about-bio { margin-top: 16px; }
.about-tags { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.about-tags span {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(30, 30, 30, 0.12);
  border-radius: 999px;
  color: var(--black);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── RESULTADOS ── */
#resultados {
  background:
    radial-gradient(900px 500px at 100% 100%, rgba(0, 0, 255, 0.18), transparent 60%),
    var(--black-deep);
}
.case-meta {
  margin-top: 14px;
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--grey-mid); letter-spacing: 0.03em;
}
.stats-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.stat-card {
  padding: 34px 30px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
.stat-num {
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; color: var(--light);
}
.stat-num small {
  font-size: 0.55em; font-weight: 300; color: #7a7aff;
  text-shadow: 0 0 18px rgba(0, 0, 255, 0.8);
}
.stat-desc { margin-top: 12px; font-size: 13.5px; color: #9c9c9c; line-height: 1.55; }
.case-quote {
  margin-top: 44px;
  padding: 30px 34px;
  max-width: 640px;
  background: rgba(0, 0, 255, 0.07);
  border: 1px solid rgba(0, 0, 255, 0.3);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}
.case-quote p { font-size: 14.5px; color: #b9b9b9; line-height: 1.75; font-style: italic; }

/* ── PROCESSO ── */
#processo {
  background:
    radial-gradient(900px 460px at 50% 12%, rgba(0, 0, 255, 0.10), transparent 65%),
    var(--black);
}
.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1020px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 30px 26px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.step-num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  color: #7a7aff;
  text-shadow: 0 0 16px rgba(0, 0, 255, 0.8);
  margin-bottom: 18px;
}
.step-name {
  font-size: 16px; font-weight: 700; line-height: 1.35;
  color: var(--light); margin-bottom: 10px;
}
.step-desc { font-size: 13.5px; color: #9c9c9c; line-height: 1.65; }

/* ── FAQ ── */
#faq { background: var(--light); color: var(--black); }
.faq-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.faq-card {
  padding: 32px 30px;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius);
  box-shadow:
    0 12px 34px rgba(30, 30, 30, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.faq-q {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px;
}
.faq-a { font-size: clamp(16px, 1.7vw, 18px); font-weight: 700; line-height: 1.45; color: var(--black); }
.faq-detail { margin-top: 10px; font-size: 14px; color: #6b6b6b; line-height: 1.65; }

/* ── CTA FINAL ── */
#contato {
  background:
    radial-gradient(1000px 560px at 50% 120%, rgba(0, 0, 255, 0.35), transparent 65%),
    var(--black-deep);
  text-align: center;
}
.cta-headline {
  font-size: clamp(32px, 5.4vw, 72px);
  font-weight: 800; letter-spacing: -0.028em;
  line-height: 1.06;
  max-width: 820px; margin: 0 auto 22px;
  text-wrap: balance;
  color: var(--light);
}
.cta-sub {
  font-size: clamp(15.5px, 1.8vw, 19px);
  color: #a8a8a8; max-width: 520px;
  margin: 0 auto 44px; line-height: 1.65;
  font-weight: 300;
}
.cta-actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.cta-note { font-size: 13px; color: var(--grey-mid); max-width: 420px; line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(48px, 6vw, 72px) var(--pad-x) 32px;
}
.footer-layout {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 36px;
}
.footer-logo {
  font-size: 30px; font-weight: 800; letter-spacing: 0.03em;
  text-transform: lowercase; color: var(--light);
}
.footer-tagline {
  margin-top: 8px;
  font-size: 12.5px; color: var(--grey-mid);
  letter-spacing: 0.14em; text-transform: uppercase;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
@media (max-width: 640px) { .footer-links { align-items: flex-start; } }
.footer-links a {
  font-size: clamp(15px, 1.6vw, 17px); font-weight: 500;
  color: var(--light); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy {
  max-width: 1180px; margin: 52px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px; color: var(--grey-mid);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  letter-spacing: 0.03em;
}
.footer-copy a { color: var(--grey-mid); text-decoration: none; }
.footer-copy a:hover { color: var(--light); }

/* ── MODAL FORM ── */
#lead-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: auto;
  padding: 40px 20px;
}
#lead-modal.open { display: block; }
.modal-box {
  max-width: 620px; margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden; position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.modal-head {
  background:
    radial-gradient(500px 240px at 90% -20%, rgba(255, 255, 255, 0.22), transparent 60%),
    var(--blue);
  padding: 40px 46px 32px;
  position: relative;
  color: #fff;
}
.modal-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  width: 34px; height: 34px;
  color: #fff; font-size: 18px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.3); }
.modal-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
}
.modal-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
}
.modal-sub { margin-top: 12px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
#lead-form { padding: 38px 46px 42px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid + .form-grid, .form-field + .form-grid, .form-grid + .form-field { margin-top: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #666;
}
.form-field input, .form-field textarea {
  padding: 13px 14px;
  border: 1px solid #ddd; border-radius: 10px;
  font-size: 14px; font-family: inherit;
  outline: none; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafafa;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.12);
}
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.radio-opt {
  display: flex; align-items: center; gap: 10px;
  text-transform: none; letter-spacing: 0; font-weight: 400; color: #333;
  padding: 12px 14px;
  border: 1px solid #ddd; border-radius: 10px;
  cursor: pointer; font-size: 14px;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}
.radio-opt:hover { border-color: var(--blue); background: rgba(0, 0, 255, 0.04); }
.radio-opt input { accent-color: var(--blue); }
.radio-span-2 { grid-column: span 2; }
.consent-row {
  margin-top: 20px;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  border: 1px solid #e6e6e6; border-radius: 12px;
  background: #fafafa;
}
.consent-row input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 1px; accent-color: var(--blue); cursor: pointer;
}
.consent-row label { font-size: 13px; color: #555; line-height: 1.6; cursor: pointer; }
.consent-row a { color: var(--blue); text-decoration: none; }
.consent-row a:hover { text-decoration: underline; }
.form-submit {
  margin-top: 30px; width: 100%;
  padding: 18px;
  background: var(--black); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none; border-radius: 12px; cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, box-shadow 0.25s;
}
.form-submit:hover {
  background: var(--blue);
  box-shadow: 0 0 30px rgba(0, 0, 255, 0.4);
}
.form-note { margin-top: 14px; font-size: 12px; color: #999; text-align: center; line-height: 1.6; }
@media (max-width: 560px) {
  .modal-head, #lead-form { padding-left: 26px; padding-right: 26px; }
  .form-grid, .radio-grid { grid-template-columns: 1fr; }
  .radio-span-2 { grid-column: span 1; }
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 9998;
  max-width: 1080px; margin: 0 auto;
  background: rgba(30, 30, 30, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s;
}
#cookie-banner.visible { transform: translateY(0); opacity: 1; }
#cookie-banner p { font-size: 13px; color: #b5b5b5; line-height: 1.6; max-width: 640px; flex: 1 1 320px; }
#cookie-banner a { color: #8a8aff; text-decoration: none; }
#cookie-banner a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-accept {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--blue); color: #fff;
  padding: 11px 20px; border-radius: 10px; border: none;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 0 20px rgba(0, 0, 255, 0.35);
  transition: box-shadow 0.2s;
}
.cookie-btn-accept:hover { box-shadow: 0 0 30px rgba(0, 0, 255, 0.6); }
.cookie-btn-reject {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06); color: #9c9c9c;
  padding: 11px 20px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer; font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-btn-reject:hover { color: var(--light); border-color: rgba(255, 255, 255, 0.35); }

/* ── ANIMAÇÕES ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── PÁGINAS INTERNAS (privacidade / thank you) ── */
.page-simple {
  min-height: 100vh;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(0, 0, 255, 0.22), transparent 60%),
    var(--black-deep);
  padding: 140px var(--pad-x) 80px;
}
.page-simple .inner { max-width: 820px; }
.prose { margin-top: 48px; }
.prose h2 {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--light);
  margin: 44px 0 14px;
}
.prose p, .prose li { font-size: 15px; line-height: 1.8; color: #b5b5b5; }
.prose ul { padding-left: 22px; margin: 10px 0; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--light); font-weight: 600; }
.prose a { color: #8a8aff; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose .card-note {
  margin: 14px 0;
  padding: 20px 24px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.back-link {
  display: flex; align-items: center; gap: 8px; width: fit-content;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--grey-mid); text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--light); }
