:root {
  /* Paleta inspirada no print (azul forte + azul profundo + CTA amarelo-limão) */
  --bg1: #030613; /* azul vivo */
  --bg2: #102fc7; /* azul profundo */
  --ink: #0b1020;
  --muted: #5b6477;
  --card: #ffffff;
  --line: #e7ecf7;
  --cta: #d6e300; /* amarelo-limão */
  --zap: #25d366;
  --cta2: #bfd100;
  --primary: #1e58ff;
  --primary2: #0c2bff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --shadow2: 0 10px 28px rgba(12, 43, 255, 0.18);
  --r: 18px;
  --r2: 26px;
  --container: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --containerPad: 20px;
  --ticker-h: 44px; /* altura da sua ticker */
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

#lead {
  scroll-margin-top: calc(var(--ticker-h) + var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--containerPad);
}

/* Top ticker */
.ticker {
  height: 44px;
  background: linear-gradient(90deg, #000000, #0a29dd);
  color: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.ticker__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  padding-left: 100%;
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.95;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 6px rgba(214, 227, 0, 0.18);
  flex: 0 0 auto;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120%);
  }
}

/* Header */
.header {
  position: sticky;
  top: var(--ticker-h);
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 0;
  line-height: 0;
}
.brand img {
  width: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.brand span {
  font-size: 16px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #111827;
  font-weight: 700;
}
.menu a {
  padding: 10px 10px;
  border-radius: 12px;
  opacity: 0.9;
}
.menu a:hover {
  background: #f4f7ff;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; /* <<< importante */
  justify-content: flex-end;
}
.btn {
  border: 0;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s transform, 0.2s filter, 0.2s box-shadow;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--cta {
  background: var(--zap);
  color: #ffffff;
}
.btn--cta:hover {
  filter: brightness(0.97);
}
.btn--ghost {
  background: #f4f7ff;
  color: #0b1020;
}

/* Mobile menu */
.hamb {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamb svg {
  width: 22px;
  height: 22px;
}

.mobile {
  display: none;
  border-top: 1px solid rgba(16, 24, 40, 0.06);
  padding: 10px 0 16px;
}
.mobile a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 800;
}
.mobile a:hover {
  background: #f4f7ff;
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 36px;
  color: #fff;
  background: linear-gradient(120deg, var(--bg1), var(--bg2));
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -260px -260px;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0) 60%
  );
  filter: blur(2px);
  transform: rotate(12deg);
  opacity: 0.8;
  pointer-events: none;
}
.hero::after {
  inset: -220px -260px auto auto;
  width: 820px;
  height: 820px;
  opacity: 0.65;
  transform: rotate(-8deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.06;
  letter-spacing: -1px;
}
.hero h1 .hl {
  color: var(--cta);
}
.hero p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 52ch;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 22px;
}
.badge {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  backdrop-filter: blur(10px);
}
.badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}

.hero__ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__mini {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 13px;
}
.miniItem {
  display: flex;
  align-items: center;
  gap: 8px;
}
.miniItem .check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(214, 227, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 227, 0, 0.35);
}

.cardForm {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  position: relative;
}
.cardForm h3 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.cardForm .hint {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
}
.field label {
  font-weight: 800;
  font-size: 12.5px;
  color: #2b3447;
}
.input,
.select {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0 12px;
  outline: none;
  background: #fff;
  transition: 0.2s box-shadow, 0.2s border-color;
}
.input:focus,
.select:focus {
  border-color: rgba(30, 88, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(30, 88, 255, 0.14);
}

.inline2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.radios {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.radio {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 800;
  color: #2b3447;
  cursor: pointer;
  user-select: none;
}
.radio input {
  accent-color: var(--primary);
}
.formBtn {
  margin-top: 12px;
  width: 100%;
  height: 46px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  border: 0;
  font-weight: 900;
  box-shadow: var(--shadow2);
  cursor: pointer;
}
.fineprint {
  margin: 10px 0 0;
  font-size: 8px;
  color: #010205;
  line-height: 1.45;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 20px 0;
}
.section--tight {
  padding: 52px 0;
}
.sectionTitle {
  text-align: center;
  margin: 0 0 10px;
  font-size: clamp(26px, 2.7vw, 40px);
  letter-spacing: -0.9px;
  line-height: 1.1;
}
.sectionSub {
  text-align: center;
  margin: 0 auto 26px;
  color: var(--muted);
  max-width: 70ch;
  font-weight: 700;
  line-height: 1.6;
}

/* seção do mockup (pra não parecer imagem quadrada jogada) */
.section--mock {
  position: relative;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(16, 47, 199, 0.1),
    rgba(3, 6, 19, 0) 60%
  );
  overflow: hidden;
}

.section--mock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  height: 520px;
  border-radius: 34px;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(30, 88, 255, 0.22),
    rgba(3, 6, 19, 0) 70%
  );
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.phone {
  position: absolute;
  width: 66%;
  left: 0;
  top: 26px;
  transform: rotate(-10deg);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
  border-radius: 20px;
  border: 6px solid #0e1530;
  background: #0e1530;
  overflow: hidden;
}
.phone2 {
  position: absolute;
  width: 66%;
  right: 0;
  bottom: 10px;
  transform: rotate(10deg);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
  border-radius: 20px;
  border: 6px solid #0e1530;
  background: #0e1530;
  overflow: hidden;
}
.phone img,
.phone2 img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}
.coin {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0.95;
}
.coin span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #ffd34e 65%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.accordion {
  border: 1px solid var(--line);
  border-radius: var(--r2);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.accItem {
  border-top: 1px solid var(--line);
}
.accItem:first-child {
  border-top: 0;
}
.accBtn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 900;
  color: #111827;
}
.accBtn small {
  display: block;
  font-weight: 800;
  color: #6b7280;
  margin-top: 4px;
}
.accPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #fff;
}
.accInner {
  padding: 0 16px 16px;
  color: #4b5563;
  line-height: 1.65;
  font-weight: 700;
}
.accIcon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(30, 88, 255, 0.12);
}
.accChevron {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 88, 255, 0.12);
  transition: 0.18s transform;
  flex: 0 0 auto;
}
.accItem.is-open .accChevron {
  transform: rotate(180deg);
}

/* KPI bar (blue section) */
.kpi {
  background: linear-gradient(90deg, #000000, #102fc7);
  color: #fff;
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: "";
  position: absolute;
  inset: -200px auto auto -240px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0) 60%
  );
}
.kpi h2 {
  text-align: center;
  margin: 0 0 26px;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -0.9px;
}
.kpiRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kpiCard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r2);
  padding: 18px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kpiNum {
  font-size: 44px;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--cta);
  font-weight: 1000;
  margin-bottom: 8px;
}
.kpiTxt {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}
.kpiTxt span {
  opacity: 0.9;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

/* Pricing */
.pricingTop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 26px;
}
.toggle {
  background: #eef3ff;
  border: 1px solid rgba(30, 88, 255, 0.16);
  padding: 6px;
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
}
.pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #2b3447;
}
.pill.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 18px rgba(30, 88, 255, 0.2);
}

.priceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.priceCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.priceCard.featured {
  border: 1px solid rgba(214, 227, 0, 0.65);
  box-shadow: 0 20px 55px rgba(214, 227, 0, 0.18);
  transform: translateY(-6px);
}
.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(214, 227, 0, 0.22);
  border: 1px solid rgba(214, 227, 0, 0.55);
  color: #0b1020;
  font-weight: 1000;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
}
.priceCard h3 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.4px;
}
.priceCard p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 10px 0 12px;
}
.price strong {
  font-size: 44px;
  letter-spacing: -1px;
  color: var(--primary);
  font-weight: 1000;
}
.price small {
  font-weight: 900;
  color: #2b3447;
  margin-bottom: 8px;
}
.list {
  margin: 10px 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
  color: #2b3447;
}
.li .tick {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(30, 88, 255, 0.12);
  border: 1px solid rgba(30, 88, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.li.muted {
  opacity: 0.5;
}
.priceCard .btn {
  margin-top: auto;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow2);
}

/* Logos strip */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
  padding: 16px 0 0;
}
.logoChip {
  width: 100%;
  max-width: 150px;
  height: 62px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0.95;
}
.logoChip img {
  max-width: 110px;
  max-height: 44px;
  object-fit: contain;
  filter: saturate(1.05);
}

/* Segment cards (blue section) */
.segments {
  background: linear-gradient(90deg, #000000, #102fc7);
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.segments h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(26px, 2.6vw, 38px);
}
.segments p {
  margin: 0 auto 26px;
  text-align: center;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.6;
}
.segGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.segCard {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  min-height: 220px;
}
.segCard img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  opacity: 0.9;
}
.segLabel {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  color: #0b1020;
  font-weight: 1000;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.segments .btnWrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

/* Case */
.caseWrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.video {
  width: min(920px, 100%);
  aspect-ratio: 16/9;
  border-radius: 22px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #000;
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials */
.testGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.testLeft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 22px;
}
.testLeft h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.8px;
}
.testLeft p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}
.testCards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.quote {
  background: #eef3ff;
  border: 1px solid rgba(30, 88, 255, 0.16);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.avatar img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.quote strong {
  display: block;
  font-weight: 1000;
  margin-bottom: 6px;
}
.quote span {
  display: block;
  font-weight: 800;
  color: #2b3447;
}
.quote small {
  display: block;
  margin-top: 6px;
  color: #4b5563;
  font-weight: 700;
  line-height: 1.5;
}
.ctaBanner {
  background: linear-gradient(90deg, #09378d, #0a2ee2);
  border-radius: 22px;
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}
.ctaBanner p {
  margin: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.ctaBanner .btn {
  background: var(--cta);
  color: #0b1020;
}

/* FAQ section on blue background like print */
.faq {
  background: linear-gradient(120deg, #071a7a, #0b3bff);
  padding: 72px 0;
  color: #fff;
}
.faq h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(26px, 2.6vw, 40px);
}
.faqBox {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}
.faqBox .accBtn {
  padding: 18px 18px;
}
.faqBox .accInner {
  padding: 0 18px 18px;
}

/* Footer like print */
.footer {
  background: #07113a;
  color: #eaf0ff;
  padding: 48px 0 22px;
}
.footerTop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.footer h4 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.footer a {
  display: block;
  color: rgba(234, 240, 255, 0.82);
  font-weight: 700;
  padding: 6px 0;
}
.footer a:hover {
  color: #fff;
}
.footerBrand {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 0;
  line-height: 0;
}
.footerBrand img {
  width: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.footerBrand span {
  font-size: 16px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.socialBtn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.socialBtn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.footerBottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  color: rgba(234, 240, 255, 0.78);
  font-size: 13px;
}
.footerBottom a {
  display: inline;
  padding: 0;
  margin: 0;
  color: rgba(234, 240, 255, 0.86);
}

/* Floating WhatsApp */
.waFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.waPill {
  background: #fff;
  border: 2px solid #25d366;
  color: #0b1020;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 1000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: none;
}
.waBtn {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #25d366;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.waBtn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testGrid {
    grid-template-columns: 1fr;
  }
  .priceGrid {
    grid-template-columns: 1fr;
  }
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .kpiRow {
    grid-template-columns: 1fr;
  }
  .segGrid {
    grid-template-columns: 1fr 1fr;
  }
  .footerTop {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
  .hamb {
    display: none !important;
  }
  .mobile {
    display: none !important;
  }
  .waPill {
    display: block;
  }
  .nav__actions .btn--cta {
    margin-top: 6px; /* aumenta/diminui aqui */
  }
}
@media (max-width: 520px) {
  .faqCta {
    padding: 36px 0;
  }

  .faqCtaBox {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 24px 20px;
    border-radius: 22px;
    gap: 14px;
  }

  .faqCtaText h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .faqCtaText p {
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.85;
    font-weight: 500;
  }

  .faqCtaBtn {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(214, 227, 0, 0.35);
    animation: pulseCta 2.2s infinite;
  }
  .ctaBanner {
    flex-direction: column; /* era row */
    align-items: stretch; /* botão ocupa largura */
    text-align: center;
    gap: 12px;
    padding: 18px;
  }

  .ctaBanner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .ctaBanner .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 16px;
  }
  .section {
    padding: 20px 0;
  }
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 22px !important;
  }

  .hero__grid {
    gap: 14px !important;
  }

  /* remove qualquer espaçamento fantasma */
  .hero::before,
  .hero::after {
    display: none !important;
  }

  /* garante que o form encoste no próximo bloco */
  .cardForm {
    margin-bottom: 0 !important;
  }
  .inline2 {
    grid-template-columns: 1fr;
  }
  .segGrid {
    grid-template-columns: 1fr;
  }
  .logoChip {
    max-width: 100%;
  }
  .waPill {
    display: none;
  }
  .brand span {
    display: none;
  } /* some o texto e fica só o logo */
  .btn--ghost {
    display: none;
  } /* esconde "Tour do sistema" */
  .btn {
    padding: 11px 12px;
    border-radius: 12px;
  } /* menor */
  .hamb {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .ticker {
    height: 40px;
  }
  .ticker__item {
    font-size: 12.5px;
  }
  .ticker__track {
    gap: 28px;
  }
  .hero {
    padding: 42px 0 28px;
  }
  .hero p {
    font-size: 15.5px;
  }
  .hero__ctaRow .btn {
    width: 100%;
  } /* CTA ocupa largura toda */
  .hero__mini {
    gap: 10px;
  }
  .cardForm {
    padding: 18px 16px 14px;
    border-radius: 20px;
  }
  .cardForm h3 {
    font-size: 17px;
  }
  .input,
  .select {
    height: 46px;
  }
  :root {
    --ticker-h: 40px; /* pq você muda o height da ticker pra 40 */
    --header-h: 78px; /* se o header continuar 78 */
  }
}

@keyframes pulseCta {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(214, 227, 0, 0.6);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(214, 227, 0, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(214, 227, 0, 0.6);
  }
}

img,
iframe {
  max-width: 100%;
}

.cardForm .fineprint {
  color: #010205 !important;
  font-size: 12px !important;
}

/* destaque do formulário ao clicar no CTA */
.cardForm {
  scroll-margin-top: calc(var(--ticker-h) + var(--header-h) + 16px);
}

.cardForm.is-focus {
  animation: leadPop 900ms ease;
  box-shadow: 0 22px 70px rgba(12, 43, 255, 0.25), var(--shadow);
  outline: 3px solid rgba(214, 227, 0, 0.55);
  outline-offset: 6px;
}

@keyframes leadPop {
  0% {
    transform: translateY(0) scale(1);
  }
  18% {
    transform: translateY(-6px) scale(1.02);
  }
  35% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(8px);
  }
  65% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* destaque CTA ao carregar página */
.btn--cta.attention {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(214, 227, 0, 0);
  }
  30% {
    transform: scale(1.06);
    box-shadow: 0 0 0 14px rgba(98, 238, 5, 0.28);
  }
  55% {
    transform: scale(0.98);
  }
  75% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(214, 227, 0, 0);
  }
}

.clientsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.clientCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 14px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.2s transform, 0.2s box-shadow;
}

.clientCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.clientCard img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.clientCard strong {
  display: block;
  font-weight: 900;
  margin-bottom: 6px;
}

.clientCard span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

@media (max-width: 900px) {
  .clientsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faqCta {
  background: linear-gradient(120deg, #071a7a, #0b3bff);
  padding: 60px 0;
  color: #fff;
}

.faqCtaBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 28px;
  padding: 36px;
  background: linear-gradient(135deg, #071a7a, #0b3bff);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.faqCtaText h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.5px;
}

.faqCtaText p {
  margin: 0;
  font-weight: 700;
  opacity: 0.9;
  max-width: 560px;
}

.faqCtaBtn {
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--cta);
  color: #0b1020;
  box-shadow: 0 14px 32px rgba(214, 227, 0, 0.35);
}

.footerPowered {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  opacity: 0.8;
}

.footerPowered .powered {
  opacity: 0.7;
}

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.socialBtn {
  background: none !important;
  border: none !important;
  padding: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialBtn:hover {
  transform: translateY(-2px);
}

.socialIcon {
  width: 26px; /* tamanho ideal para rodapé */
  height: 26px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

/* WhatsApp levemente maior */
.socialBtn--wa .socialIcon {
  width: 28px;
  height: 28px;
}
