/* Connecta Group - LP visual system inspired by the user's existing LPs */
:root {
  --navy-950: #050d1f;
  --navy-900: #081a3d;
  --navy-800: #0b2f63;
  --blue-700: #144c99;
  --blue-600: #1f63bd;
  --blue-300: #9fc1f2;
  --blue-100: #e7efff;
  --ink: #0e1729;
  --muted: #5d6a82;
  --paper: #f5f7fb;
  --white: #ffffff;
  --line: #dce5f2;
  --green: #25d366;
  --danger: #c44d45;
  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --wrap: 1440px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 26px;
  --pill: 999px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --shadow: 0 24px 70px rgba(8, 26, 61, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, ul { margin: 0; }
ul { padding: 0; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: .98;
}
h1, h2, h3, p, li, a, button, summary {
  overflow-wrap: break-word;
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--pill);
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  box-shadow: none;
  transition: background .32s var(--ease), box-shadow .32s var(--ease), backdrop-filter .32s var(--ease);
}
.site-header.is-solid {
  background: linear-gradient(90deg, rgba(5, 13, 31, .92), rgba(8, 26, 61, .9));
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 12px 34px rgba(5, 13, 31, .34);
}
.site-header.is-solid .header-inner { min-height: 66px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .24));
}
.brand span {
  display: grid;
  gap: 2px;
}
.brand b {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
}
.brand small {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
}
.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s var(--ease);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-300);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav-menu a:hover {
  color: var(--white);
}
.nav-menu a:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0) 45%);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -2px auto -2px -55%;
  width: 48%;
  z-index: -1;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  opacity: 0;
  transition: left .48s var(--ease), opacity .18s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:hover::after {
  left: 115%;
  opacity: 1;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600) 54%, #4d8ee8);
  box-shadow: 0 20px 46px rgba(20, 76, 153, .38);
}
.btn-primary:hover { box-shadow: 0 28px 62px rgba(20, 76, 153, .48); }
.btn-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-lg {
  min-height: 60px;
  padding-inline: 34px;
  font-size: 15px;
}
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
}
.hero-bg {
  z-index: 0;
  background: url("/static/hero-pc.png") center right / cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.28) contrast(1.06) brightness(1.32);
}
.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(5, 13, 31, .9) 0%, rgba(6, 18, 42, .64) 32%, rgba(8, 26, 61, .16) 58%, rgba(8, 26, 61, 0) 82%),
    radial-gradient(circle at 74% 46%, rgba(70, 140, 240, .28), transparent 42%);
}
.hero::after {
  display: none;
}
.hero .wrap { max-width: none; }
.hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 130px;
  padding-bottom: 92px;
  padding-left: clamp(32px, 6.2vw, 132px);
}
.hero-content {
  width: min(680px, 100%);
  min-width: 0;
}
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow::before,
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.hero-title {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(3.35rem, 5.85vw, 6.05rem);
  font-weight: 700;
}
.hero-title .accent {
  color: var(--blue-300);
}
.hero-sub {
  width: min(560px, 100%);
  margin-top: 20px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  overflow-wrap: break-word;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* AOS — deslocamentos menores e curva mais suave (animação fluida) */
[data-aos] {
  transition-timing-function: cubic-bezier(.22, .61, .36, 1) !important;
}
[data-aos="fade-up"] { transform: translate3d(0, 34px, 0); }
[data-aos="fade-down"] { transform: translate3d(0, -34px, 0); }
[data-aos="fade-right"] { transform: translate3d(-34px, 0, 0); }
[data-aos="fade-left"] { transform: translate3d(34px, 0, 0); }
[data-aos="zoom-in"] { transform: scale(.965); }
[data-aos="zoom-in-up"] { transform: translate3d(0, 30px, 0) scale(.975); }
[data-aos].aos-animate { transform: translate3d(0, 0, 0) scale(1); }

/* Barra de progresso de leitura (scroll-driven, sem JS, sem custo) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-300));
  animation: cg-progress linear both;
  animation-timeline: scroll(root);
}
@keyframes cg-progress { to { transform: scaleX(1); } }

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-950), var(--navy-900), var(--blue-700));
  border-block: 1px solid rgba(255, 255, 255, .1);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(160px, 16vw);
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-950), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--blue-700), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 14px;
}
.mq-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .86);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mq-pill::before {
  content: "";
  width: 34px;
  height: 1px;
  border-radius: 999px;
  background: rgba(159, 193, 242, .72);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section {
  position: relative;
  padding-block: clamp(76px, 8vw, 126px);
}
.section-light { background: var(--paper); }
.section-white { background: var(--white); }
.section-blue {
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 13, 31, .98), rgba(8, 26, 61, .96) 48%, rgba(20, 76, 153, .92));
}
.section-dark {
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(105deg, rgba(5, 13, 31, .98) 0%, rgba(8, 26, 61, .94) 48%, rgba(20, 76, 153, .86) 100%), url("/static/hero-pc.png") center right / cover no-repeat;
}
.section-dark::before {
  display: none;
}
.section-dark .wrap { position: relative; z-index: 1; }
.section-head {
  max-width: 780px;
}
.section-head.wide {
  max-width: 1020px;
}
.section-head.wide h2 {
  max-width: 18ch;
}
.section-head.wide .lead {
  max-width: 78ch;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .kicker { justify-content: center; }
.section h2 {
  max-width: 15ch;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 4.2vw, 4.25rem);
  font-weight: 700;
}
.section-blue h2,
.section-dark h2 { color: var(--white); }
.lead {
  max-width: 64ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}
.section-blue .lead,
.section-dark .lead { color: rgba(255, 255, 255, .76); }
.section-blue .kicker { color: var(--blue-300); }
.method-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  color: var(--ink);
}
.method-section .kicker {
  color: var(--blue-700);
}
.method-section h2 {
  color: var(--navy-950);
}
.method-section .lead {
  color: var(--muted);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  margin-top: 42px;
}
.problem-layout > *,
.method-timeline > *,
.connect-simple > *,
.why-grid > *,
.why-points > *,
.feature-grid > *,
.deliver-grid > *,
.lead-section .wrap > *,
.form-row > * {
  min-width: 0;
}
.problem-copy h2 {
  max-width: 13ch;
}
.problem-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.problem-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.problem-item span {
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 700;
  line-height: .9;
}
.problem-item h3 {
  color: var(--navy-950);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}
.problem-item p {
  max-width: 46ch;
  margin-top: 8px;
  color: var(--muted);
}

.method-timeline {
  position: relative;
  display: grid;
  gap: 0;
  width: min(980px, 100%);
  margin-top: 54px;
}
.method-timeline::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-700), rgba(31, 99, 189, .08));
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 30px;
  padding: 0 0 38px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 26, 61, .14);
}
.timeline-marker span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(140deg, var(--blue-700), var(--blue-600));
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}
.timeline-content {
  padding: 4px 0 30px;
  border-bottom: 1px solid var(--line);
}
.timeline-step:last-child .timeline-content { border-bottom: 0; padding-bottom: 0; }
.timeline-content small {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.timeline-content h3 {
  color: var(--navy-950);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1;
}
.timeline-content p {
  max-width: 58ch;
  margin-top: 9px;
  color: var(--muted);
  font-size: 1rem;
}
.reveal-step {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.connect-simple {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 44px);
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.connect-simple article {
  min-height: 168px;
  padding: 0;
  background: transparent;
}
.connect-simple span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}
.connect-simple h3 {
  color: var(--navy-950);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}
.connect-simple p {
  margin-top: 10px;
  color: var(--muted);
}
.section-blue .connect-simple {
  border-top-color: rgba(255, 255, 255, .18);
}
.section-blue .connect-simple article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}
.section-blue .connect-simple span {
  color: var(--white);
  background: rgba(159, 193, 242, .18);
}
.section-blue .connect-simple h3 {
  color: var(--white);
}
.section-blue .connect-simple p {
  color: rgba(255, 255, 255, .72);
}

.basic-statement {
  max-width: 980px;
  margin-top: 38px;
  padding: clamp(28px, 4vw, 48px) 0 0;
  border-top: 1px solid var(--line);
}
.basic-statement p {
  max-width: 62ch;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  font-weight: 600;
  line-height: 1.16;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-top: 42px;
}
.big-card {
  position: sticky;
  top: 110px;
  min-height: 410px;
  display: grid;
  align-content: end;
  padding: clamp(28px, 4.5vw, 46px);
  border-radius: 36px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
    linear-gradient(145deg, var(--navy-950), var(--blue-700));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.big-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/logo-marca-branca.png") 86% 18% / 140px no-repeat;
  opacity: .09;
}
.big-card strong {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 4.2rem);
  line-height: .98;
}
.big-card p {
  position: relative;
  z-index: 1;
  max-width: 40ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, .76);
}
.stack {
  display: grid;
  gap: 14px;
}
.info-card {
  position: relative;
  min-height: 156px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(8, 26, 61, .07);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 99, 189, .32);
  box-shadow: var(--shadow);
}
.info-card small {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.info-card h3 {
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}
.info-card p {
  margin-top: 10px;
  color: var(--muted);
}

.method-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
}
.method-step {
  min-height: 116px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 15px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  text-align: center;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.method-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(159, 193, 242, .35);
}
.method-step b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  font-family: var(--font-display);
  font-size: 22px;
}
.method-step span {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 800;
}
.feature-grid,
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.feature-card,
.deliver-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 26, 61, .07);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.feature-card:hover,
.deliver-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 99, 189, .3);
  box-shadow: var(--shadow);
}
.feature-card .num,
.deliver-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  margin-bottom: 22px;
  border-radius: var(--pill);
  color: var(--blue-700);
  background: var(--blue-100);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}
.feature-card h3,
.deliver-card h3 {
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1.08;
}
.feature-card p,
.deliver-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .96rem;
}
.section-dark .feature-card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}
.section-dark .feature-card h3 { color: var(--white); }
.section-dark .feature-card p { color: rgba(255, 255, 255, .72); }

.statement {
  margin-top: 42px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 40px;
  color: var(--white);
  background:
    radial-gradient(560px 300px at 88% 0%, rgba(159, 193, 242, .22), transparent 68%),
    linear-gradient(135deg, var(--navy-950), var(--blue-700));
  box-shadow: var(--shadow);
}
.statement p:first-child {
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.3vw, 5rem);
  font-weight: 700;
  line-height: .98;
}
.statement p:last-child {
  max-width: 62ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-top: 42px;
}
.why-main {
  min-height: auto;
  display: grid;
  gap: 22px;
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}
.why-main h3 {
  max-width: 11ch;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 3.8vw, 4.2rem);
  line-height: .96;
}
.why-main p {
  color: var(--muted);
  font-size: 1.05rem;
}
.why-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}
.why-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 26, 61, .07);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 99, 189, .28);
  box-shadow: var(--shadow);
}
.why-card span {
  width: 48px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}
.why-card h3 {
  color: var(--navy-950);
  font-size: clamp(1.25rem, 1.85vw, 1.65rem);
  line-height: 1.04;
}
.why-card p {
  color: var(--muted);
}
.section-blue .why-points {
  gap: 16px;
}
.section-blue .why-card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}
.section-blue .why-card:hover {
  border-color: rgba(159, 193, 242, .34);
  background: rgba(255, 255, 255, .1);
}
.section-blue .why-card span {
  color: var(--white);
  background: rgba(159, 193, 242, .18);
}
.section-blue .why-card h3 {
  color: var(--white);
}
.section-blue .why-card p {
  color: rgba(255, 255, 255, .72);
}

/* ===================== HOVER DOS CARDS ===================== */
/* Diagnóstico — itens numerados deslizam e realçam */
.problem-item { transition: transform .3s var(--ease); }
.problem-item span,
.problem-item h3 { transition: color .25s var(--ease), transform .3s var(--ease); }
.problem-item:hover { transform: translateX(10px); }
.problem-item:hover span { color: var(--blue-600); transform: scale(1.08); }
.problem-item:hover h3 { color: var(--blue-700); }

/* Método — marcador cresce e ganha brilho */
.timeline-marker,
.timeline-marker span { transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); }
.timeline-content h3 { transition: color .25s var(--ease); }
.timeline-step:hover .timeline-marker { transform: scale(1.14) rotate(-4deg); box-shadow: 0 18px 42px rgba(20, 76, 153, .42); }
.timeline-step:hover .timeline-marker span { background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); }
.timeline-step:hover .timeline-content h3 { color: var(--blue-700); }

/* Entregas (fundo claro) */
.connect-simple article { transition: transform .28s var(--ease); }
.connect-simple span { transition: color .25s var(--ease), background .25s var(--ease), transform .28s var(--ease); }
.connect-simple h3 { transition: color .25s var(--ease); }
.connect-simple article:hover { transform: translateY(-7px); }
.connect-simple article:hover span { color: #fff; background: var(--blue-700); transform: scale(1.06); }
.connect-simple article:hover h3 { color: var(--blue-700); }

/* Entregas (fundo azul) — cards levantam e brilham */
.section-blue .connect-simple article { transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease); }
.section-blue .connect-simple article:hover { transform: translateY(-7px); background: rgba(255, 255, 255, .12); border-color: rgba(159, 193, 242, .5); box-shadow: 0 30px 66px rgba(0, 0, 0, .32); }
.section-blue .connect-simple article:hover span { background: rgba(159, 193, 242, .32); transform: scale(1.06); }

/* Por que — realce do selo + brilho */
.why-card span { transition: transform .28s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.why-card:hover span { transform: scale(1.06); background: var(--blue-700); color: #fff; }
.section-blue .why-card:hover { transform: translateY(-5px); box-shadow: 0 30px 66px rgba(0, 0, 0, .3); }
.section-blue .why-card:hover span { background: rgba(159, 193, 242, .34); color: #fff; }

/* FAQ — leve realce ao passar o mouse */
.faq details { transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq details:hover { border-color: rgba(31, 99, 189, .28); box-shadow: 0 16px 34px rgba(8, 26, 61, .1); }
/* =========================================================== */

.faq {
  width: min(820px, calc(100% - 40px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 26, 61, .06);
  overflow: hidden;
}
.faq summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  cursor: pointer;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 15px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 22px;
  transition: transform .18s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 22px 24px;
  color: var(--muted);
}

/* Lead */
.lead-section {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(80px, 8vw, 128px);
  background:
    radial-gradient(900px 480px at 84% 4%, rgba(31, 99, 189, .32), transparent 62%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
}
.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(159, 193, 242, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 193, 242, .055) 1px, transparent 1px);
  background-size: 42px 42px;
}
.lead-section .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}
.lead-section h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
}
.lead-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  list-style: none;
}
.lead-points li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, .84);
}
.lead-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 21px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
}
.lead-points li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
.form-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}
.form-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--pill);
  background: var(--blue-100);
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-card h3 {
  margin-top: 14px;
  color: var(--navy-950);
  font-size: 1.7rem;
}
.form-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .94rem;
}
.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 800;
}
.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field select { appearance: auto; }
.field input:focus,
.field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(31, 99, 189, .13);
}
.form-note,
.form-ok {
  text-align: center;
  font-size: 12px;
}
.form-ok {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(37, 211, 102, .12);
  color: #0b7a4c;
  font-weight: 800;
}

/* Footer */
.footer {
  padding-block: 58px 26px;
  background:
    linear-gradient(135deg, var(--navy-950), #061633 52%, var(--navy-800));
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}
.footer .wrap { display: block; }
.footer-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, .85fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
}
.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}
.footer .brand {
  width: fit-content;
}
.footer .brand img {
  width: 44px;
  height: 44px;
}
.footer-brand > p {
  max-width: 42ch;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.6;
}
.footer-h {
  margin-bottom: 16px;
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-nav {
  display: grid;
  gap: 12px;
}
.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
}
.footer-wa::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .22);
}
.footer-lema {
  max-width: 42ch;
  padding: 16px 20px;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.4;
  font-style: italic;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.footer-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  border-color: transparent;
}
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .marquee-track { animation: none; }
}

@media (max-width: 1040px) {
  .nav-menu { display: none; }
  .problem-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .split,
  .lead-section .wrap {
    grid-template-columns: 1fr;
  }
  .big-card { position: relative; top: auto; min-height: 320px; }
  .method-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .connect-simple { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid,
  .deliver-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --pad: clamp(18px, 5vw, 28px); }
  .site-header { padding-top: 0; }
  .header-inner { min-height: 54px; }
  .brand img { width: 38px; height: 38px; }
  .brand small { display: none; }
  .site-header .btn { display: none; }
  .hero {
    min-height: 100svh;
  }
  .hero-bg {
    background-image: url("/static/hero-mobile.png");
    background-position: top center;
    opacity: .82;
  }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(5, 13, 31, .42) 0%, rgba(5, 13, 31, .78) 38%, rgba(5, 13, 31, .98) 74%);
  }
  .hero-inner {
    padding-top: 74px;
    padding-bottom: 76px;
  }
  .hero-title {
    max-width: 9.7ch;
    font-size: clamp(2.25rem, 9.2vw, 3.05rem);
    line-height: .96;
  }
  .hero-content,
  .hero-sub,
  .hero-actions {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }
  .eyebrow, .kicker {
    font-size: 10px;
    letter-spacing: .13em;
  }
  .section h2,
  .lead-section h2 {
    max-width: 12ch;
    font-size: clamp(1.82rem, 7.6vw, 2.5rem);
    line-height: 1;
  }
  .why-main h3 {
    max-width: 11ch;
    font-size: clamp(1.85rem, 7.8vw, 2.6rem);
  }
  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }
  .feature-grid,
  .deliver-grid,
  .connect-simple,
  .why-points,
  .form-row {
    grid-template-columns: 1fr;
  }
  .why-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
  .problem-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .why-main { min-height: auto; }
  .footer {
    padding-block: 44px 24px;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .method-timeline {
    margin-top: 38px;
  }
  .method-timeline::before {
    left: 27px;
  }
  .timeline-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 30px;
  }
  .timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
  .timeline-marker span {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 23px;
  }
  .connect-simple article {
    min-height: auto;
  }
  .basic-statement p {
    max-width: 100%;
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }
  .method-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .lead-section h2 {
    max-width: none;
  }
}
