:root {
  --bg: #0b0c12;
  --bg-2: #12141d;
  --surface: #181b26;
  --surface-2: #202431;
  --paper: #f6f2ea;
  --paper-2: #fffdf8;
  --ink: #14151b;
  --ink-2: #565761;
  --white: #fff;
  --muted: #b9bac5;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(20, 21, 27, 0.12);
  --violet: #7a3cff;
  --magenta: #ed22f2;
  --blue: #2f5cff;
  --mint: #27efbe;
  --yellow: #f3d858;
  --grad: linear-gradient(
    135deg,
    var(--blue),
    var(--violet) 54%,
    var(--magenta)
  );
  --grad-cool: linear-gradient(135deg, var(--blue), var(--mint));
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --max: 1280px;
  --bg-marcas-confiam: #112b4a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family:
    "Nunito",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.03;
  letter-spacing: -0.04em;
}
::selection {
  background: var(--mint);
  color: var(--ink);
}
.display {
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(2.45rem, 5.1vw, 5rem);
  margin-bottom: 18px;
}
.section-head p {
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  color: var(--ink-2);
  max-width: 690px;
  margin-bottom: 0;
}
.section-head.center p {
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(39, 239, 190, 0.12);
}
.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 650px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(122, 60, 255, 0.28);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 38px rgba(122, 60, 255, 0.34);
}
.button:focus-visible,
.menu-button:focus-visible,
.carousel-arrow:focus-visible,
.video-open:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}
.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}
.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
}
.button.dark {
  background: var(--ink);
  box-shadow: none;
}
.button.light {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.button.small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.86rem;
}
.skip {
  position: fixed;
  top: -100px;
  left: 14px;
  z-index: 1000;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
}
.skip:focus {
  top: 12px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(11, 12, 18, 0.92),
    rgba(11, 12, 18, 0.55),
    transparent
  );
  transition: 0.25s;
}
.site-header.scrolled {
  background: rgba(11, 12, 18, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.brand img {
  display: block;
  width: 174px;
  height: auto;
  object-fit: contain;
}
.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.menu > a:not(.button) {
  font-size: 0.89rem;
  color: #d8d9e2;
  font-weight: 800;
  transition: color 0.2s;
}
.menu > a:not(.button):hover {
  color: #fff;
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-button span {
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: 0.25s;
}
.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  padding: 142px 0 62px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(122, 60, 255, 0.24),
    transparent 67%
  );
  right: -210px;
  top: -260px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(39, 239, 190, 0.12),
    transparent 70%
  );
  left: -180px;
  bottom: -220px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(3.55rem, 6.5vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: -0.068em;
  margin-bottom: 18px;
  max-width: 760px;
}
.hero h1 span {
  display: block;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero .lead {
  margin-bottom: 30px;
}
.hero-metrics {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-metrics > div {
  padding-right: 22px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 1px;
}
.hero-metrics > div:last-child {
  border-right: 0;
  padding-right: 0;
}
.hero-metrics strong {
  font-family: "Syne", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--yellow);
}
.hero-metrics span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 800;
}
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  justify-self: end;
}
.hero-photo-frame {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  display: grid;
}
.hero-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.hero-photo-body {
  padding: 20px 20px 22px;
  background: #10131c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-photo-body strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.hero-photo-body span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.proof-band {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}
.proof-band div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.proof-band div:last-child {
  border-right: 0;
}
.proof-band strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.12rem;
  margin-bottom: 2px;
}
.proof-band span {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Light sections */
.paper {
  background: var(--paper);
  color: var(--ink);
}
.paper-2 {
  background: var(--paper-2);
  color: var(--ink);
}
.paper .eyebrow,
.paper-2 .eyebrow {
  color: #8d18a2;
}
.cards {
  display: grid;
  gap: 18px;
}
.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}
.problem-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(20, 21, 27, 0.045);
}
.problem-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -48px;
  bottom: -55px;
  background: radial-gradient(
    circle,
    rgba(122, 60, 255, 0.18),
    transparent 68%
  );
}
.problem-number {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 21, 27, 0.2);
  background: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--ink);
}
.problem-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin: 56px 0 12px;
}
.problem-card p {
  font-size: 1.02rem;
  color: var(--ink-2);
  margin: 0;
}
.problem-card.featured {
  background: linear-gradient(150deg, #7a3cff 0%, #d31fdc 100%);
  color: #fff;
  border-color: transparent;
}
.problem-card.featured p {
  color: rgba(255, 255, 255, 0.88);
}
.problem-card.featured .problem-number {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.problem-card.featured::after {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.23),
    transparent 70%
  );
  z-index: 0;
}
.problem-summary {
  margin-top: 20px;
  padding: 25px 28px;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 800;
}
.problem-summary strong {
  color: var(--mint);
}

/* Solutions */
#solucoes {
  background: var(--grad);
}

.solutions-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 58px;
}
#solucoes .solutions-layout .section-head .eyebrow {
  color: #fff;
}
#solucoes .solutions-layout #como-atuamos p {
  color: #fff;
}
.system-card {
  position: sticky;
  top: 112px;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(160deg, #171925, #0f1017);
  color: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.system-card .eyebrow {
  color: #cfbaff;
}
.system-card h3 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  margin-bottom: 14px;
}
.system-card > p {
  font-size: 1.06rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.system-layers {
  display: grid;
  gap: 12px;
}
.system-layer {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.system-layer b {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(122, 60, 255, 0.2);
  color: #d6c6ff;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
}
.system-layer strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}
.system-layer span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
}
.services-list {
  display: grid;
  gap: 14px;
}
.service-card {
  padding: 25px 26px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 21, 27, 0.07);
  border-color: rgba(122, 60, 255, 0.28);
}
.service-card h3 {
  font-size: 1.38rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 1rem;
  color: var(--ink-2);
  margin: 0;
}

/* Method */
.method {
  background: linear-gradient(180deg, #10121a, #0b0c12);
}
.method .section-head p {
  color: var(--muted);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.method-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.025)
  );
  display: flex;
  flex-direction: column;
}
.method-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: rgba(122, 60, 255, 0.17);
  border: 1px solid rgba(122, 60, 255, 0.34);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  position: relative;
}
.method-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--mint);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-card small {
  font-size: 0.76rem;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.method-card h3 {
  font-size: 1.55rem;
  margin: 15px 0 12px;
}
.method-card p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

/* Qualification */
.qual-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}
.qual-copy h2 {
  font-size: clamp(2.45rem, 4.7vw, 4.5rem);
  margin-bottom: 18px;
}
.qual-copy p {
  color: var(--ink-2);
  font-size: 1.08rem;
}
.qual-list {
  display: grid;
  gap: 12px;
}
.qual-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 19px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.02rem;
}
.qual-item span:first-child {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(39, 239, 190, 0.16);
  color: #087659;
  font-size: 1.1rem;
}

/* Commerce */
.commerce {
  background: #11131b;
}
.commerce-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.commerce .section-head {
  margin-bottom: 28px;
}
.commerce .section-head p {
  color: var(--muted);
}
.checks {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.checks li {
  position: relative;
  padding-left: 26px;
  color: #dedfe7;
  font-size: 0.96rem;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 900;
}
.commerce-panel {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(
    155deg,
    rgba(122, 60, 255, 0.15),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: var(--shadow);
}
.commerce-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.commerce-panel-top span {
  color: #c9b8ff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}
.commerce-panel-top strong {
  font-size: 1.02rem;
  text-align: right;
}
.flow {
  padding: 6px 0 18px;
}
.flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  align-items: start;
}
.flow-step > b {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(39, 239, 190, 0.12);
  color: var(--mint);
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
}
.flow-step strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
}
.flow-step span {
  display: block;
  color: var(--muted);
  font-size: 0.91rem;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.platform-grid a,
.platform-grid span {
  min-height: 66px;
  padding: 10px 8px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  font-size: 0.86rem;
  line-height: 1.15;
}
.platform-grid a:hover {
  border-color: rgba(39, 239, 190, 0.58);
  background: rgba(39, 239, 190, 0.09);
}

/* Numbers */
.numbers {
  background: var(--paper);
  color: var(--ink);
  padding: 62px 0;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
}
.number-stat {
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.number-stat:last-child {
  border-right: 0;
}
.number-stat strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  color: #7b22a5;
  margin-bottom: 8px;
}
.number-stat span {
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 800;
}

/* Testimonials */
.testimonials {
  background: var(--paper-2);
  color: var(--ink);
  overflow: hidden;
}
.testimonial-shell {
  width: min(calc(100% - 32px), 1400px);
  margin-inline: auto;
  position: relative;
}
.video-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 28px 24px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  scroll-snap-type: x mandatory;
}
.video-carousel::-webkit-scrollbar {
  display: none;
}
.video-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.video-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 16px 36px rgba(20, 21, 27, 0.08);
  scroll-snap-align: start;
}
.video-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #111;
  position: relative;
  cursor: pointer;
}
.video-open img {
  width: 100%;
  aspect-ratio: 9/12;
  object-fit: cover;
}
.video-open::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  font-size: 1.05rem;
  padding-left: 3px;
}
.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}
.video-meta strong {
  font-family: "Syne", sans-serif;
  font-size: 1.12rem;
}
.video-meta span {
  color: var(--ink-2);
  font-weight: 800;
  font-size: 0.88rem;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(20, 21, 27, 0.15);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.carousel-arrow.prev {
  left: 8px;
  transform: translate(-40%, -50%);
}
.carousel-arrow.next {
  right: 8px;
  transform: translate(40%, -50%);
}

/* Clients marquee */
.clients {
  background-color: var(--bg-marcas-confiam);
  padding: 94px 0 86px;
  overflow: hidden;
}
.clients .section-head {
  margin-bottom: 38px;
}
.clients .section-head h2 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}
.clients .section-head p {
  color: var(--muted);
}
.logo-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}

.bg-dark {
  background-color: var(--bg-marcas-confiam);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: logoMove 58s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-item {
  width: 172px;
  height: 82px;
  display: grid;
  place-items: center;
  flex: none;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.04);
}
.logo-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes logoMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Journey */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.journey-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line-dark);
}
.journey-card b {
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  color: #8b1fa0;
  letter-spacing: 0.1em;
}
.journey-card h3 {
  font-size: 1.42rem;
  margin: 42px 0 10px;
}
.journey-card p {
  font-size: 0.98rem;
  color: var(--ink-2);
  margin: 0;
}

/* About / 2018 */
.about {
  background: var(--paper);
  color: var(--ink);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  border-radius: 30px;
  background: linear-gradient(160deg, #131722, #0d0f17);
  color: #fff;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(20, 21, 27, 0.18);
}
.about-brand-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-symbol {
  width: 118px;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #cfd5ff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.about-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}
.about-brand-panel h3 {
  font-size: clamp(2rem, 4.3vw, 3.1rem);
  margin: 0 0 10px;
  color: #fff;
}
.about-brand-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin: 0;
}
.about-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  width: 100%;
}
.about-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
}
.about-meta span::before {
  content: "•";
  color: var(--mint);
  font-size: 1.2rem;
  line-height: 1;
}
.story-card {
  position: relative;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #fbfbff);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 21, 27, 0.07);
}
.story-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -130px;
  top: -150px;
  background: radial-gradient(
    circle,
    rgba(122, 60, 255, 0.16),
    transparent 68%
  );
}
.story-label {
  font-size: 0.78rem;
  color: #72248f;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
}
.story-year {
  font-family: "Syne", sans-serif;
  font-size: clamp(5.3rem, 11vw, 9.4rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  margin: 24px 0 22px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story-card h2 {
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  margin-bottom: 18px;
  color: #171923;
}
.story-card p {
  font-size: 1.06rem;
  color: #404352;
  max-width: 700px;
}
.story-card p:last-of-type {
  margin-bottom: 0;
}
.story-card .button {
  margin-top: 24px;
}

/* CTA and forms */
.cta {
  background: linear-gradient(135deg, #6832ed, #b51fc4 62%, #e52f9d);
  padding: 86px 0;
}
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta h2 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  max-width: 760px;
  margin-bottom: 14px;
}
.cta p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 650px;
  margin: 0;
}
.contact {
  background: var(--paper-2);
  color: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  margin-bottom: 18px;
}
.contact-copy p {
  font-size: 1.08rem;
  color: var(--ink-2);
}
.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.contact-links a,
.contact-links span {
  font-weight: 800;
  font-size: 0.95rem;
}
.contact-links a:hover {
  color: #7e269f;
}
.form-card {
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 42px rgba(20, 21, 27, 0.07);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a6871;
  font-weight: 900;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9d7dd;
  border-radius: 14px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  min-height: 108px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(122, 60, 255, 0.1);
}
.form-card .button {
  margin-top: 20px;
  width: 100%;
  border: 0;
}
.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: #7b277f;
  font-weight: 800;
}

/* Footer */
.footer {
  background: #090a0f;
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr 0.82fr 1.18fr;
  gap: 38px;
  padding-bottom: 42px;
  align-items: start;
}
.footer-brand img {
  width: 184px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 0;
}
.footer h3 {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
  color: #fff;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.45;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.footer-address {
  display: grid;
  gap: 3px;
  margin-top: 5px;
  color: #92939e;
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #92939e;
  font-size: 0.8rem;
}
.floating-actions.footer-visible {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.84);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.video-modal.open {
  display: flex;
}
.video-modal-inner {
  width: min(100%, 520px);
  position: relative;
}
.video-modal video {
  width: 100%;
  max-height: 82vh;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}
.video-close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 2;
}
.video-title {
  margin-top: 12px;
  text-align: center;
  color: #fff;
  font-weight: 800;
}

/* Wbuy */
.partner-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.partner-lockup .brand img {
  width: 160px;
}
.partner-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}
.partner-lockup .wbuy-logo {
  width: 118px;
  height: auto;
}
.wbuy-hero .hero-photo-frame {
  padding: 36px;
  background: linear-gradient(145deg, #fff, #f1f4fa);
}
.wbuy-hero .hero-photo-frame img {
  aspect-ratio: auto;
  object-fit: contain;
}
.wbuy-hero .hero-photo-frame::after {
  display: none;
}
.wbuy-visual {
  display: grid;
  gap: 18px;
}
.wbuy-live {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.wbuy-live-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.wbuy-live-item b {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(39, 239, 190, 0.12);
  color: var(--mint);
  font-size: 0.78rem;
}
.wbuy-live-item strong {
  display: block;
  font-size: 0.94rem;
}
.wbuy-live-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.gauge {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--line-dark);
  background: #fff;
}
.gauge-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.gauge-top span {
  font-size: 0.81rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #76747d;
  font-weight: 900;
}
.gauge-top strong {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
}
.gauge-track {
  height: 12px;
  border-radius: 99px;
  background: #ebe8ee;
  overflow: hidden;
}
.gauge-fill {
  height: 100%;
  width: 50%;
  background: var(--grad);
  border-radius: 99px;
}
.gauge p {
  font-size: 0.9rem;
  color: var(--ink-2);
  margin: 12px 0 0;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line-dark);
}
.benefit-card .tag {
  display: inline-flex;
  margin-bottom: 34px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8d249e;
  font-weight: 900;
}
.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.benefit-card p {
  color: var(--ink-2);
  font-size: 1rem;
  margin: 0;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.price-card {
  padding: 32px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--violet);
  box-shadow: 0 20px 50px rgba(122, 60, 255, 0.14);
}
.price-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #83269b;
  font-weight: 900;
}
.price {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin: 18px 0 8px;
}
.price-card > p {
  color: var(--ink-2);
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 26px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.94rem;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #05906b;
  font-weight: 900;
}
.faq {
  max-width: 850px;
  margin-inline: auto;
}
.faq details {
  border-bottom: 1px solid var(--line-dark);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  list-style: none;
  padding-right: 30px;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.4rem;
}
.faq details[open] summary::after {
  content: "−";
}
.faq p {
  color: var(--ink-2);
  font-size: 0.98rem;
  margin: 12px 0 0;
}

/* Diagnosis */
.score-preview {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.score-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.score-ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--mint) 0 74%, #e6e7eb 74%);
  position: relative;
  flex: none;
}
.score-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
}
.score-ring strong {
  position: relative;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
}
.score-top h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}
.score-top span {
  font-size: 0.85rem;
  color: #087659;
  font-weight: 900;
}
.score-bars {
  display: grid;
  gap: 10px;
}
.score-row {
  display: grid;
  grid-template-columns: 104px 1fr 30px;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #65646c;
}
.score-bar {
  height: 8px;
  border-radius: 99px;
  background: #eaebef;
  overflow: hidden;
}
.score-bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--grad-cool);
}
.start-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.start-card {
  padding: 24px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}
.start-letter {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.start-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.start-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.included-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line-dark);
  font-weight: 800;
  font-size: 0.93rem;
}
.included-item b {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.js .reveal.visible,
.hero .reveal {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .logo-track {
    animation: none;
  }
  .button {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .menu {
    gap: 16px;
  }
  .menu > a:not(.button) {
    font-size: 0.82rem;
  }
  .menu .button {
    display: none;
  }
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method-card {
    min-height: 260px;
  }
  .hero-grid,
  .commerce-layout {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1.15fr 0.75fr 0.8fr;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-contact-grid {
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 22px;
  }
}
@media (max-width: 880px) {
  .section {
    padding: 84px 0;
  }
  .container {
    width: min(calc(100% - 30px), var(--max));
  }
  .menu-button {
    display: flex;
  }
  .menu {
    position: fixed;
    top: 78px;
    left: 15px;
    right: 15px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: rgba(16, 18, 26, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .menu.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .menu > a:not(.button) {
    padding: 12px 10px;
    font-size: 0.96rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .menu > a:nth-last-child(2) {
    border-bottom: 0;
  }
  .menu .button {
    display: inline-flex;
    margin-top: 12px;
  }
  .hero-grid,
  .solutions-layout,
  .qual-grid,
  .commerce-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    justify-self: center;
    max-width: 500px;
    margin-inline: auto;
  }
  .hero-photo-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
  .system-card {
    position: relative;
    top: auto;
  }
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .number-grid {
    grid-template-columns: 1fr 1fr;
  }
  .number-stat:nth-child(2) {
    border-right: 0;
  }
  .number-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .start-grid {
    grid-template-columns: 1fr 1fr;
  }
  .start-card:last-child {
    grid-column: 1/-1;
  }
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .footer-address {
    grid-column: 1/-1;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .video-carousel {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}
@media (max-width: 620px) {
  body {
    font-size: 16px;
  }
  .container {
    width: min(calc(100% - 26px), var(--max));
  }
  .section {
    padding: 70px 0;
  }
  .site-header {
    background: rgba(11, 12, 18, 0.92);
    backdrop-filter: blur(14px);
  }
  .nav {
    min-height: 70px;
  }
  .brand img {
    width: 150px;
  }
  .menu {
    top: 70px;
  }
  .hero {
    padding: 110px 0 48px;
  }
  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.65rem);
    line-height: 0.91;
  }
  .hero-tagline {
    font-size: 1.12rem;
  }
  .hero .lead {
    font-size: 1rem;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .actions .button {
    width: 100%;
  }
  .hero-metrics {
    gap: 14px;
  }
  .hero-metrics > div {
    padding-right: 14px;
  }
  .hero-metrics strong {
    font-size: 1.35rem;
  }
  .hero-photo {
    max-width: 100%;
  }
  .hero-photo-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    max-height: none;
  }
  .hero-photo-body {
    padding: 18px;
  }
  .proof-band {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    border: 0;
    background: transparent;
    border-radius: 0;
    margin-inline: -13px;
    padding: 0 13px;
    scrollbar-width: none;
  }
  .proof-band::-webkit-scrollbar {
    display: none;
  }
  .proof-band div {
    min-width: 170px;
    border: 1px solid var(--line) !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    padding: 15px;
  }
  .section-head {
    margin-bottom: 34px;
  }
  .section-head h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }
  .section-head p {
    font-size: 1rem;
  }
  .problem-grid,
  .method-grid,
  .journey-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    min-height: 230px;
  }
  .problem-card h3 {
    margin-top: 42px;
  }
  .system-card,
  .commerce-panel,
  .story-card,
  .form-card {
    padding: 24px;
  }
  .service-card {
    padding: 22px;
  }
  .method-card {
    min-height: auto;
  }
  .method-card h3 {
    font-size: 1.4rem;
  }
  .checks {
    grid-template-columns: 1fr;
  }
  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .platform-grid a,
  .platform-grid span {
    min-height: 60px;
    padding: 8px 4px;
    font-size: 0.72rem;
  }
  .number-grid {
    grid-template-columns: 1fr 1fr;
  }
  .number-stat {
    padding: 22px 12px;
  }
  .number-stat strong {
    font-size: 2rem;
  }
  .number-stat span {
    font-size: 0.78rem;
  }
  .testimonial-shell {
    width: 100%;
  }
  .video-carousel {
    grid-auto-columns: 64%;
    padding-left: 28px;
    padding-right: 28px;
    gap: 12px;
    scroll-snap-type: x mandatory;
  }
  .video-card {
    border-radius: 20px;
  }
  .video-meta {
    padding: 14px 16px;
  }
  .video-meta strong {
    font-size: 1rem;
  }
  .video-meta span {
    font-size: 0.8rem;
  }
  .carousel-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    font-size: 1rem;
    top: 42%;
  }
  .carousel-arrow.prev {
    left: 6px;
    transform: translate(0, -50%);
  }
  .carousel-arrow.next {
    right: 6px;
    transform: translate(0, -50%);
  }
  .play {
    width: 52px;
    height: 52px;
  }
  .video-modal {
    padding: 0;
    background: #000;
    align-items: stretch;
    justify-content: stretch;
  }
  .video-modal-inner {
    width: 100%;
    height: 100%;
    max-width: none;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
  }
  .video-modal video {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
    background: #000;
  }
  .video-close {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.94);
  }
  .video-title {
    margin: 0;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    background: #000;
    font-size: 0.9rem;
  }
  .clients {
    padding: 72px 0;
  }
  .clients .section-head {
    text-align: left;
  }
  .logo-track {
    gap: 14px;
  }
  .logo-item {
    width: 136px;
    height: 68px;
    padding: 11px 13px;
    border-radius: 14px;
  }
  .logo-item img {
    max-height: 42px;
  }
  .about-visual {
    padding: 24px;
  }
  .about-symbol {
    width: 96px;
  }
  .about-brand-panel h3 {
    font-size: 2rem;
  }
  .story-card {
    padding: 26px;
  }
  .story-year {
    font-size: 5.7rem;
  }
  .story-card h2 {
    font-size: 2rem;
  }
  .story-card p {
    font-size: 1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer {
    padding: 46px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 32px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 158px;
    margin-bottom: 14px;
  }
  .footer-brand p {
    font-size: 0.88rem;
    max-width: none;
  }
  .footer-group h3 {
    font-size: 0.86rem;
    margin-bottom: 12px;
  }
  .footer-links {
    gap: 8px;
  }
  .footer-links a,
  .footer-links span {
    font-size: 0.83rem;
  }
  .footer-contact {
    grid-column: 1/-1;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
  }
  .footer-address {
    grid-column: 1/-1;
    margin-top: 4px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding-top: 18px;
    font-size: 0.74rem;
  }
  .floating-actions {
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .partner-lockup .brand img {
    width: 138px;
  }
  .partner-lockup .wbuy-logo {
    width: 94px;
  }
  .gauge {
    padding: 24px;
  }
  .start-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }
  .start-card:last-child {
    grid-column: auto;
  }
  .score-top {
    align-items: flex-start;
  }
  .score-ring {
    width: 88px;
    height: 88px;
  }
  .score-row {
    grid-template-columns: 88px 1fr 26px;
  }
}
.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-action {
  min-width: 54px;
  padding-inline: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.floating-diagnostico {
  background: #fff;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.floating-diagnostico:hover {
  background: #fff;
  color: var(--ink);
}
@media (max-width: 620px) {
  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .floating-action {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.84rem;
  }
}
.bar-82 {
  width: 82%;
}
.bar-74 {
  width: 74%;
}
.bar-68 {
  width: 68%;
}
.bar-71 {
  width: 71%;
}
.bar-58 {
  width: 58%;
}
.bar-52 {
  width: 52%;
}
.bar-75 {
  width: 75%;
}

/* V14 — architecture, proof and privacy */
.brand-context {
  display: flex;
  justify-content: center;
  gap: 12px 26px;
  flex-wrap: wrap;
  margin: -12px auto 34px;
  color: #c5c6d0;
  font-size: 0.88rem;
  text-align: center;
}
.brand-context strong {
  color: #fff;
}
.solution-qualification {
  margin-top: 72px;
  padding-top: 70px;
  border-top: 1px solid var(--line-dark);
}
.method-bridge {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  margin: -14px auto 42px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}
.method-bridge strong {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
}
.method-bridge span {
  color: var(--muted);
  font-size: 0.95rem;
}
.method-bridge a {
  color: var(--mint);
  font-weight: 900;
  font-size: 0.88rem;
  white-space: nowrap;
}
.method-journey {
  margin-top: 74px;
  padding-top: 68px;
  border-top: 1px solid var(--line);
}
.method-journey .section-head p {
  color: var(--muted);
}
.method-journey .journey-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}
.method-journey .journey-card b {
  color: var(--mint);
}
.method-journey .journey-card p {
  color: var(--muted);
}
.privacy-note,
.score-privacy-note {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #6b6b74;
  margin: 12px 0 0;
}
.privacy-note a,
.score-privacy-note a {
  color: #742696;
  font-weight: 900;
  text-decoration: underline;
}
.score-privacy-note {
  text-align: center;
  margin-top: 18px;
}
.privacy-hero {
  padding-bottom: 78px;
}
.privacy-updated {
  color: var(--muted);
  font-size: 0.9rem;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.privacy-index {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
}
.privacy-index strong {
  font-family: "Syne", sans-serif;
  margin-bottom: 4px;
}
.privacy-index a {
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 800;
}
.privacy-index a:hover {
  color: #762595;
}
.privacy-content {
  max-width: 780px;
}
.privacy-content section {
  padding: 0 0 36px;
  margin: 0 0 36px;
  border-bottom: 1px solid var(--line-dark);
}
.privacy-content section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.privacy-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 14px;
}
.privacy-content p {
  color: var(--ink-2);
  font-size: 1rem;
}
.privacy-content a {
  color: #73228f;
  font-weight: 900;
  text-decoration: underline;
}
.footer-bottom a {
  color: inherit;
}
.footer-bottom a:hover {
  color: #fff;
}
@media (max-width: 880px) {
  .method-bridge {
    grid-template-columns: 1fr;
  }
  .method-bridge a {
    white-space: normal;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-index {
    position: relative;
    top: auto;
  }
  .solution-qualification {
    margin-top: 56px;
    padding-top: 54px;
  }
}
@media (max-width: 620px) {
  .brand-context {
    display: grid;
    text-align: left;
    padding-inline: 4px;
  }
  .method-journey {
    margin-top: 56px;
    padding-top: 52px;
  }
  .privacy-hero {
    padding-bottom: 54px;
  }
  .privacy-layout {
    gap: 34px;
  }
  .privacy-index {
    padding: 18px;
  }
  .score-privacy-note {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .gauge-top {
    display: grid;
    gap: 6px;
  }
  .gauge-top strong {
    text-align: left;
    font-size: 1.25rem;
  }
}

/* V15 — direção visual minimalista em tons de azul */
:root {
  --bg: #0d1b2a;
  --bg-2: #11243a;
  --surface: #152a43;
  --surface-2: #1b3451;
  --paper: #f3f6fa;
  --paper-2: #ffffff;
  --ink: #122033;
  --ink-2: #5d6b7d;
  --muted: #aebdce;
  --line: rgba(173, 202, 235, 0.18);
  --line-dark: rgba(35, 78, 126, 0.13);
  --violet: #4f82c3;
  --magenta: #74a8df;
  --blue: #2f6fb8;
  --mint: #8bc6f2;
  --yellow: #b9d9f5;
  --grad: linear-gradient(135deg, #2f6fb8, #5f91cc);
  --grad-cool: linear-gradient(135deg, #2f6fb8, #8bc6f2);
  --radius-sm: 13px;
  --radius: 19px;
  --radius-lg: 26px;
  --shadow: 0 16px 44px rgba(20, 55, 92, 0.12);
}

body {
  background: var(--bg);
  font-size: 16.5px;
}
.section {
  padding: 88px 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.section-head.center {
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
  letter-spacing: -0.035em;
}
.eyebrow {
  color: var(--blue);
  letter-spacing: 0.12em;
}
.eyebrow::before {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(139, 198, 242, 0.12);
}
::selection {
  background: #b9daf5;
  color: var(--ink);
}

.button {
  background: #2f6fb8;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(47, 111, 184, 0.18);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.button:hover {
  background: #285f9f;
  filter: none;
  box-shadow: 0 10px 24px rgba(47, 111, 184, 0.2);
}
.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
.button.light {
  background: #fff;
  color: #173150;
}
.button.dark {
  background: #173150;
}
.button:focus-visible,
.menu-button:focus-visible,
.carousel-arrow:focus-visible,
.video-open:focus-visible {
  outline-color: #8bc6f2;
}

.site-header {
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.95),
    rgba(13, 27, 42, 0.62),
    transparent
  );
}
.site-header.scrolled {
  background: rgba(13, 27, 42, 0.96);
  border-bottom-color: rgba(173, 202, 235, 0.15);
  box-shadow: 0 8px 28px rgba(5, 18, 32, 0.08);
}
.menu > a:not(.button) {
  color: #c9d5e3;
  font-weight: 700;
}
.menu-button {
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.hero {
  background: #0d1b2a;
  padding-bottom: 58px;
}
.hero::before {
  width: 560px;
  height: 560px;
  right: -190px;
  top: -220px;
  background: radial-gradient(
    circle,
    rgba(89, 151, 215, 0.18),
    transparent 68%
  );
}
.hero::after {
  display: none;
}
.hero h1 {
  font-size: clamp(3.35rem, 6vw, 5.8rem);
  letter-spacing: -0.06em;
}
.hero h1 span {
  background: linear-gradient(135deg, #76abe0, #b3d8f6);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-tagline {
  font-weight: 800;
}
.hero-metrics strong {
  color: #a9d2f3;
}
.hero-photo-frame {
  border-radius: 22px;
  border-color: rgba(173, 202, 235, 0.16);
  box-shadow: 0 18px 46px rgba(3, 14, 27, 0.22);
  background: #12243a;
}
.hero-photo-body {
  background: #12243a;
  border-top-color: rgba(173, 202, 235, 0.12);
}
.proof-band {
  margin-top: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(173, 202, 235, 0.14);
}
.proof-band div {
  padding: 18px 20px;
}

.paper {
  background: #f3f6fa;
}
.paper-2 {
  background: #fff;
}
.paper .eyebrow,
.paper-2 .eyebrow {
  color: #2f6fb8;
}
.problem-card,
.service-card,
.qual-item,
.journey-card,
.benefit-card,
.price-card,
.form-card,
.privacy-index,
.score-preview {
  border-color: #dfe7f0;
  box-shadow: none;
  border-radius: 18px;
}
.problem-card {
  min-height: 242px;
  padding: 26px;
}
.problem-card::after {
  background: radial-gradient(circle, rgba(68, 126, 190, 0.1), transparent 70%);
}
.problem-card.featured {
  background: #2f6fb8;
}
.problem-card.featured::after {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14),
    transparent 70%
  );
}
.problem-summary {
  background: #173150;
  border-radius: 16px;
  padding: 22px 24px;
}
.problem-summary strong {
  color: #b9dcf7;
}

.solutions-layout {
  gap: 50px;
}
.system-card {
  padding: 28px;
  border-radius: 22px;
  background: #12243a;
  border-color: rgba(173, 202, 235, 0.13);
  box-shadow: none;
}
.system-card .eyebrow {
  color: #a8cff2;
}
.system-layer {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(173, 202, 235, 0.1);
}
.system-layer b {
  border-radius: 11px;
  background: rgba(139, 198, 242, 0.1);
  color: #b9dcf7;
}
.service-card {
  padding: 23px 24px;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(24, 65, 108, 0.08);
  border-color: #c6d7e9;
}

.method {
  background: #0f1e31;
}
.method-card {
  min-height: 280px;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(173, 202, 235, 0.14);
}
.method-icon {
  border-radius: 13px;
  background: rgba(139, 198, 242, 0.08);
  border-color: rgba(139, 198, 242, 0.22);
  margin-bottom: 24px;
}
.method-card small {
  color: #acd3f3;
}
.method-bridge {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(173, 202, 235, 0.14);
}
.method-bridge a {
  color: #a9d4f5;
}
.method-journey .journey-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(173, 202, 235, 0.12);
}
.method-journey .journey-card b {
  color: #a9d4f5;
}

.qual-item span:first-child {
  background: #e7f2fb;
  color: #2f6fb8;
  border-radius: 11px;
}

.commerce {
  background: #102034;
}
.commerce-panel {
  padding: 27px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(173, 202, 235, 0.14);
  box-shadow: none;
}
.commerce-panel-top span {
  color: #a7cbed;
}
.flow-step > b {
  border-radius: 11px;
  background: rgba(139, 198, 242, 0.09);
  color: #a9d4f5;
}
.platform-grid a,
.platform-grid span {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(173, 202, 235, 0.13);
}
.platform-grid a:hover {
  border-color: rgba(139, 198, 242, 0.55);
  background: rgba(139, 198, 242, 0.08);
}
.checks li::before {
  color: #8bc6f2;
}

.numbers {
  background: #f3f6fa;
  padding: 54px 0;
}
.number-grid {
  border-radius: 18px;
  border-color: #dfe7f0;
  box-shadow: none;
}
.number-stat strong {
  color: #2f6fb8;
}

.testimonials {
  background: #fff;
}
.video-card {
  border-radius: 18px;
  border-color: #dfe7f0;
  box-shadow: 0 10px 28px rgba(24, 65, 108, 0.08);
}
.play {
  width: 58px;
  height: 58px;
  box-shadow: 0 10px 26px rgba(15, 37, 62, 0.18);
}
.carousel-arrow {
  width: 46px;
  height: 46px;
  border-color: #d7e3ef;
  box-shadow: 0 8px 22px rgba(24, 65, 108, 0.12);
  color: #285f9f;
}

.clients {
  background: #0f1e31;
  padding: 78px 0 74px;
}
.clients .section-head h2 {
  font-size: clamp(2.35rem, 4.9vw, 4.7rem);
}
.logo-track {
  gap: 18px;
}
.logo-item {
  width: 158px;
  height: 76px;
  padding: 13px 16px;
  border-radius: 13px;
  border-color: rgba(173, 202, 235, 0.11);
  background: rgba(255, 255, 255, 0.025);
}
.logo-item img {
  max-height: 48px;
}
.brand-context {
  color: #b5c4d5;
}

.journey-card {
  padding: 25px 22px;
}
.journey-card b {
  color: #2f6fb8;
}

.about {
  background: #f3f6fa;
}
.about-grid {
  gap: 50px;
}
.about-visual {
  border-radius: 22px;
  background: #12243a;
  border-color: rgba(173, 202, 235, 0.12);
  box-shadow: none;
}
.about-kicker {
  color: #b5d5f0;
}
.about-meta span {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(173, 202, 235, 0.1);
}
.about-meta span::before {
  color: #8bc6f2;
}
.story-card {
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  border-color: #dfe7f0;
  box-shadow: none;
}
.story-card::before {
  background: radial-gradient(circle, rgba(88, 145, 205, 0.1), transparent 70%);
}
.story-label {
  color: #2f6fb8;
}
.story-year {
  background: linear-gradient(135deg, #2f6fb8, #83b7e6);
  -webkit-background-clip: text;
  background-clip: text;
}

.cta {
  background: #2f6fb8;
  padding: 76px 0;
}
.cta h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.35rem);
}
.contact {
  background: #fff;
}
.contact-links a:hover {
  color: #2f6fb8;
}
.field input,
.field select,
.field textarea {
  border-color: #d7e1eb;
  border-radius: 11px;
  background: #fbfdff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #5d94cc;
  box-shadow: 0 0 0 4px rgba(93, 148, 204, 0.1);
}
.privacy-note a,
.score-privacy-note a {
  color: #2f6fb8;
}

.footer {
  background: #0b1726;
  border-top-color: rgba(173, 202, 235, 0.12);
  padding-top: 56px;
}
.footer-links a:hover,
.footer-bottom a:hover {
  color: #a9d4f5;
}

.wbuy-hero .hero-photo-frame {
  background: #f5f8fc;
  border-color: #dbe6f0;
}
.wbuy-live-item {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(173, 202, 235, 0.11);
}
.wbuy-live-item b {
  border-radius: 10px;
  background: rgba(139, 198, 242, 0.09);
  color: #a9d4f5;
}
.gauge {
  border-radius: 18px;
  border-color: #dfe7f0;
  box-shadow: none;
}
.gauge-fill {
  background: #2f6fb8;
}
.benefit-card .tag,
.price-label {
  color: #2f6fb8;
}
.price-card.featured {
  border-color: #4f82c3;
  box-shadow: 0 12px 30px rgba(47, 111, 184, 0.1);
}
.price-list li::before {
  color: #2f6fb8;
}

.score-preview {
  border-radius: 20px;
}
.score-ring {
  background: conic-gradient(#6ba5dd 0 74%, #e6edf4 74%);
}
.score-top span {
  color: #2f6fb8;
}
.start-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(173, 202, 235, 0.12);
}
.start-letter {
  background: linear-gradient(135deg, #6ca3d8, #acd3f3);
  -webkit-background-clip: text;
  background-clip: text;
}
.included-item {
  border-radius: 13px;
  border-color: #dfe7f0;
}
.included-item b {
  border-radius: 9px;
  background: #2f6fb8;
}

.privacy-index a:hover,
.privacy-content a {
  color: #2f6fb8;
}

@media (max-width: 880px) {
  .section {
    padding: 76px 0;
  }
  .menu {
    background: rgba(13, 27, 42, 0.98);
    border-color: rgba(173, 202, 235, 0.14);
  }
}
@media (max-width: 620px) {
  .section {
    padding: 64px 0;
  }
  .hero {
    padding-top: 104px;
  }
  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }
  .section-head h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.25rem);
  }
  .proof-band div {
    border-radius: 13px;
  }
  .system-card,
  .commerce-panel,
  .story-card,
  .form-card {
    padding: 22px;
  }
  .clients {
    padding: 64px 0;
  }
  .logo-item {
    width: 146px;
    height: 70px;
  }
  .cta {
    padding: 64px 0;
  }
}

/* V16 — branco como cor principal, azul apenas como acento */
:root {
  --bg: #ffffff;
  --bg-2: #f7faff;
  --surface: #ffffff;
  --surface-2: #eef5fc;
  --paper: #ffffff;
  --paper-2: #f7faff;
  --ink: #10233d;
  --ink-2: #5f6f82;
  --white: #ffffff;
  --muted: #69798c;
  --line: rgba(25, 69, 116, 0.12);
  --line-dark: rgba(25, 69, 116, 0.12);
  --blue: #2f6fb8;
  --violet: #4c83bf;
  --magenta: #6fa5da;
  --mint: #8dc5ee;
  --yellow: #6d9dcc;
  --grad: linear-gradient(135deg, #2868ae, #5792cc);
  --grad-cool: linear-gradient(135deg, #2868ae, #71afe0);
  --shadow: 0 14px 38px rgba(24, 65, 108, 0.09);
}


.lead {
  color: var(--ink-2);
}

/* Cabeçalho branco e discreto */
.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(25, 69, 116, 0.09);
  box-shadow: 0 4px 20px rgba(24, 65, 108, 0.045);
  backdrop-filter: blur(16px);
}
.menu > a:not(.button) {
  color: #38506c;
}
.menu > a:not(.button):hover {
  color: #1f65aa;
}
.menu-button {
  background: #f5f8fc;
  border-color: #dce7f1;
}
.menu-button span {
  background: #173553;
}

/* Hero predominantemente branco */
.hero {
  background: #fff;
  color: var(--ink);
}
.hero::before {
  width: 540px;
  height: 540px;
  background: radial-gradient(
    circle,
    rgba(76, 141, 205, 0.12),
    transparent 69%
  );
}
.hero h1 {
  color: #10233d;
}
.hero h1 span {
  background: linear-gradient(135deg, #2364a8, #69a8da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  color: #29435f;
}
.hero .lead {
  color: #637388;
}
.hero-metrics > div {
  border-right-color: #dce6f0;
}
.hero-metrics strong {
  color: #2f6fb8;
}
.hero-metrics span {
  color: #68798c;
}
.hero .button.ghost {
  color: #173553;
  border-color: #c9d8e7;
  background: #fff;
}
.hero .button.ghost:hover {
  border-color: #6d9dcc;
  background: #f7faff;
}
.hero-photo-frame {
  background: #fff;
  border-color: #dce7f1;
  box-shadow: 0 16px 42px rgba(28, 68, 108, 0.1);
}
.hero-photo-body {
  background: #fff;
  border-top-color: #e1e9f1;
  color: #173553;
}
.hero-photo-body span {
  color: #68798c;
}
.proof-band {
  background: #fff;
  border-color: #dce6f0;
  box-shadow: 0 10px 28px rgba(24, 65, 108, 0.045);
}
.proof-band div {
  border-right-color: #e2eaf2;
}
.proof-band strong {
  color: #173553;
}
.proof-band span {
  color: #68798c;
}

/* Base das seções */
.paper,
.paper-2,
.numbers,
.testimonials,
.about,
.contact {
  background: #fff;
  color: var(--ink);
}
.paper-2,
.numbers,
.about {
  background: #f7faff;
}
.paper .eyebrow,
.paper-2 .eyebrow,
.numbers .eyebrow,
.about .eyebrow {
  color: #2f6fb8;
}

/* Marcas em branco, menores e leves */
.clients {
  
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}
.clients .section-head h2 {
  color: #10233d;
}
.clients .section-head p,
.brand-context {
  color: #68798c;
}
.brand-context strong {
  color: #173553;
}
.logo-marquee {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.logo-item {
  background: #fff;
  border-color: #dfe8f1;
  box-shadow: 0 7px 20px rgba(24, 65, 108, 0.045);
}

/* Cards brancos, sem excesso de cor */
.problem-card,
.service-card,
.qual-item,
.journey-card,
.benefit-card,
.price-card,
.form-card,
.privacy-index,
.score-preview,
.included-item,
.gauge {
  background: #fff;
  border-color: #dfe8f1;
  box-shadow: 0 7px 24px rgba(24, 65, 108, 0.045);
}
.problem-card.featured {
  background: #eaf3fb;
  color: #173553;
  border-color: #cfe0ef;
}
.problem-card.featured p {
  color: #5f7184;
}
.problem-card.featured .problem-number {
  background: #fff;
  color: #2f6fb8;
  border-color: #c6d9eb;
}
.problem-summary {
  background: #edf5fc;
  color: #173553;
  border: 1px solid #d6e5f2;
}
.problem-summary strong {
  color: #2f6fb8;
}

/* Soluções: painel claro em vez de bloco pesado */
.system-card {
  background: #f2f7fc;
  color: #173553;
  border-color: #d7e5f1;
  box-shadow: none;
}
.system-card .eyebrow {
  color: #2f6fb8;
}
.system-card > p {
  color: #607286;
}
.system-layer {
  background: #fff;
  border-color: #dce7f1;
}
.system-layer b {
  background: #e8f2fb;
  color: #2f6fb8;
}
.system-layer span {
  color: #65778a;
}
.service-card:hover {
  border-color: #b8d0e5;
  box-shadow: 0 10px 26px rgba(24, 65, 108, 0.07);
}

/* Método FBA claro, com azul apenas nos detalhes */
.method {
  background: #f7faff;
  color: var(--ink);
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}
.method .section-head p,
.method-card p,
.method-bridge span,
.method-journey .section-head p,
.method-journey .journey-card p {
  color: #637488;
}
.method-card {
  background: #fff;
  color: #173553;
  border-color: #dce7f1;
  box-shadow: 0 7px 22px rgba(24, 65, 108, 0.04);
}
.method-icon {
  background: #edf6fd;
  border-color: #cee2f2;
}
.method-icon svg {
  stroke: #2f6fb8;
}
.method-card small {
  color: #2f6fb8;
}
.method-bridge {
  background: #fff;
  border-color: #dce7f1;
}
.method-bridge strong {
  color: #173553;
}
.method-bridge a {
  color: #2f6fb8;
}
.method-journey {
  border-top-color: #dfe8f1;
}
.method-journey .journey-card {
  background: #fff;
  border-color: #dce7f1;
}
.method-journey .journey-card b {
  color: #2f6fb8;
}

/* Commerce branco com painel azul muito claro */
.commerce {
  background: #fff;
  color: var(--ink);
}
.commerce .section-head p {
  color: #637488;
}
.checks li {
  color: #40556d;
}
.checks li::before {
  color: #2f6fb8;
}
.commerce-panel {
  background: #f4f8fc;
  border-color: #d9e6f1;
  box-shadow: none;
}
.commerce-panel-top {
  border-bottom-color: #dce7f1;
}
.commerce-panel-top span {
  color: #2f6fb8;
}
.commerce-panel-top strong {
  color: #173553;
}
.flow-step > b {
  background: #e6f1fa;
  color: #2f6fb8;
}
.flow-step strong {
  color: #173553;
}
.flow-step span {
  color: #68798c;
}
.platform-grid a,
.platform-grid span {
  background: #fff;
  color: #173553;
  border-color: #d8e5ef;
}
.platform-grid a:hover {
  background: #edf6fd;
  border-color: #a9c8e2;
}

/* Números e depoimentos */
.number-grid {
  background: #fff;
  border-color: #dce6f0;
  box-shadow: 0 8px 26px rgba(24, 65, 108, 0.04);
}
.number-stat {
  border-right-color: #e2eaf2;
}
.number-stat strong {
  color: #2f6fb8;
}
.testimonials {
  background: #fff;
}
.video-card {
  background: #fff;
  border-color: #dce6f0;
  box-shadow: 0 10px 28px rgba(24, 65, 108, 0.065);
}

/* História também clara */
.about-visual {
  background: #fff;
  color: #173553;
  border-color: #dce7f1;
  box-shadow: 0 8px 28px rgba(24, 65, 108, 0.05);
}
.about-kicker {
  color: #2f6fb8;
}
.about-brand-panel h3 {
  color: #173553;
}
.about-brand-panel p {
  color: #637488;
}
.about-meta span {
  background: #f7faff;
  color: #29435f;
  border-color: #dce7f1;
}
.about-meta span::before {
  color: #2f6fb8;
}
.story-card {
  background: #fff;
  border-color: #dce7f1;
}

/* CTA é o único bloco azul forte da home */
.cta {
  background: #2769ad;
  color: #fff;
}
.cta .button.light {
  background: #fff;
  color: #1b4f82;
}

/* Formulário */
.contact {
  background: #fff;
}
.field input,
.field select,
.field textarea {
  background: #fff;
  border-color: #d7e2ec;
}

/* Páginas Score e Wbuy seguem a mesma lógica branca */
.wbuy-hero,
.score-hero,
.privacy-hero {
  background: #fff;
  color: var(--ink);
}
.wbuy-live-item,
.start-card {
  background: #fff;
  color: #173553;
  border-color: #dce7f1;
}
.wbuy-live-item b {
  background: #eaf3fb;
  color: #2f6fb8;
}
.score-top span,
.benefit-card .tag,
.price-label {
  color: #2f6fb8;
}
.price-card.featured {
  background: #fff;
  border-color: #8eb5d7;
  box-shadow: 0 10px 28px rgba(47, 111, 184, 0.08);
}
.score-privacy-note,
.privacy-note {
  color: #66778a;
}

/* Rodapé continua escuro para encerrar a página e manter contraste */
.footer {
  background: #0d1f33;
  color: #fff;
}
.footer-brand p,
.footer-links a,
.footer-links span,
.footer-address,
.footer-bottom {
  color: #b8c6d5;
}
.footer-group h3 {
  color: #fff;
}

@media (max-width: 880px) {
  .menu {
    background: #fff;
    border-color: #dce7f1;
    box-shadow: 0 18px 44px rgba(24, 65, 108, 0.12);
  }
  .menu > a:not(.button) {
    color: #29435f;
    border-bottom-color: #e7edf3;
  }
}
@media (max-width: 620px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
  .proof-band div {
    background: #fff;
    border-color: #dce6f0 !important;
  }
}

/* V17 — auditoria visual, contraste e densidade responsiva */
.button {
  box-shadow: 0 10px 24px rgba(47, 111, 184, 0.16);
}
.button:hover {
  box-shadow: 0 12px 28px rgba(47, 111, 184, 0.2);
}
.commerce .button.ghost {
  background: #fff;
  color: #173553;
  border-color: #c9d8e7;
  box-shadow: none;
}
.commerce .button.ghost:hover {
  background: #f3f8fc;
  border-color: #8fb5d5;
}

/* As artes oficiais das marcas eram monocromáticas brancas. Na V17 os arquivos
   foram convertidos para azul-marinho para funcionarem sobre o fundo principal branco. */
.logo-track {
  gap: 14px;
  animation-duration: 72s;
}
.logo-item {
  width: 142px;
  height: 68px;
  padding: 12px 14px;
  border-radius: 12px;
}
.logo-item img {
  max-height: 41px;
  filter: none;
  opacity: 0.94;
}
.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track,
.logo-marquee:active .logo-track {
  animation-play-state: paused;
}
.brand-context {
  margin-top: -8px;
  margin-bottom: 28px;
  gap: 8px 20px;
}
.brand-context span {
  padding: 7px 11px;
  border: 1px solid #e1e9f1;
  border-radius: 999px;
  background: #f8fbfe;
}

.problem-grid:focus-visible,
.services-list:focus-visible,
.method-grid:focus-visible {
  outline: 3px solid #8bc6f2;
  outline-offset: 6px;
}
.contact-links a {
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) and (min-width: 881px) {
  .hero h1 {
    font-size: clamp(3.25rem, 6.4vw, 5.7rem);
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }
}

@media (max-width: 880px) {
  .menu {
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .solutions-layout,
  .commerce-layout,
  .about-grid,
  .contact-grid {
    gap: 42px;
  }
  .clients .section-head {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  /* Menos rolagem vertical, sem retirar conteúdo oficial. */
  .section {
    padding: 50px 0;
  }
  .hero {
    padding: 94px 0 38px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 12.8vw, 3.65rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }
  .hero-tagline {
    font-size: 1.02rem;
    margin-bottom: 13px;
  }
  .hero .lead {
    font-size: 0.95rem;
    line-height: 1.58;
    margin-bottom: 23px;
  }
  .hero-photo-frame {
    border-radius: 20px;
  }
  .hero-photo-body {
    padding: 15px 16px 17px;
  }
  .hero-photo-body strong {
    font-size: 1rem;
  }
  .hero-photo-body span {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .section-head,
  .section-head.center {
    margin-bottom: 26px;
  }
  .section-head h2 {
    font-size: clamp(1.95rem, 9.5vw, 2.75rem);
    line-height: 1.02;
    margin-bottom: 12px;
  }
  .section-head p {
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 11px;
    letter-spacing: 0.12em;
  }

  .numbers {
    padding: 34px 0;
  }
  .number-grid {
    border-radius: 16px;
  }
  .number-stat {
    padding: 18px 9px;
  }
  .number-stat strong {
    font-size: 1.72rem;
    margin-bottom: 5px;
  }
  .number-stat span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .clients {
    padding: 48px 0;
  }
  .clients .section-head h2 {
    font-size: clamp(1.95rem, 9.2vw, 2.65rem);
  }
  .clients .section-head p {
    font-size: 0.9rem;
  }
  .brand-context {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    margin: 0 auto 22px;
    padding: 0 13px 4px;
    text-align: left;
    scrollbar-width: none;
  }
  .brand-context::-webkit-scrollbar {
    display: none;
  }
  .brand-context span {
    min-width: 275px;
    scroll-snap-align: start;
    font-size: 0.78rem;
    line-height: 1.45;
  }
  .logo-marquee {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 3%,
      #000 97%,
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 3%,
      #000 97%,
      transparent
    );
  }
  .logo-track {
    gap: 10px;
    animation-duration: 82s;
  }
  .logo-item {
    width: 116px;
    height: 58px;
    padding: 10px 11px;
    border-radius: 10px;
  }
  .logo-item img {
    max-height: 34px;
  }

  /* Grupos mais densos viram trilhos horizontais no celular. */
  .problem-grid,
  .services-list,
  .method-grid,
  .benefit-grid,
  .start-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 286px);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
  }
  .problem-grid::-webkit-scrollbar,
  .services-list::-webkit-scrollbar,
  .method-grid::-webkit-scrollbar,
  .benefit-grid::-webkit-scrollbar,
  .start-grid::-webkit-scrollbar {
    display: none;
  }
  .problem-card,
  .service-card,
  .method-card,
  .benefit-card,
  .start-card {
    scroll-snap-align: start;
  }

  .problem-card {
    min-height: 214px;
    padding: 20px;
    border-radius: 16px;
  }
  .problem-card h3 {
    font-size: 1.3rem;
    margin: 30px 0 9px;
  }
  .problem-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .problem-number {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }
  .problem-summary {
    margin-top: 12px;
    padding: 18px;
    border-radius: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .solutions-layout {
    gap: 32px;
  }
  .system-card {
    padding: 20px;
    border-radius: 17px;
  }
  .system-card h3 {
    font-size: 1.9rem;
  }
  .system-card > p {
    font-size: 0.92rem;
    margin-bottom: 19px;
  }
  .system-layers {
    gap: 8px;
  }
  .system-layer {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
  }
  .system-layer b {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .system-layer strong {
    font-size: 0.9rem;
  }
  .system-layer span {
    font-size: 0.76rem;
    line-height: 1.35;
  }
  .service-card {
    padding: 19px;
    border-radius: 15px;
  }
  .service-card h3 {
    font-size: 1.22rem;
    margin-bottom: 7px;
  }
  .service-card p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .solution-qualification {
    margin-top: 38px;
    padding-top: 38px;
  }
  .qual-grid {
    gap: 22px;
  }
  .qual-copy h2 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .qual-copy p {
    font-size: 0.92rem;
  }
  .qual-list {
    gap: 8px;
  }
  .qual-item {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 13px;
    font-size: 0.86rem;
    line-height: 1.4;
  }
  .qual-item span:first-child {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .testimonial-shell {
    width: 100%;
  }
  .video-carousel {
    grid-auto-columns: min(58vw, 220px);
    gap: 11px;
    padding: 5px 28px 16px;
  }
  .video-card {
    border-radius: 16px;
  }
  .video-meta {
    padding: 11px 13px;
  }
  .video-meta strong {
    font-size: 0.92rem;
  }
  .video-meta span {
    font-size: 0.72rem;
  }
  .play {
    width: 46px;
    height: 46px;
    font-size: 0.88rem;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    top: 41%;
    box-shadow: 0 7px 20px rgba(24, 65, 108, 0.13);
  }

  .commerce-layout {
    gap: 30px;
  }
  .checks {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-bottom: 22px;
  }
  .checks li {
    font-size: 0.8rem;
    line-height: 1.4;
    padding-left: 20px;
  }
  .commerce-panel {
    padding: 19px;
    border-radius: 17px;
  }
  .commerce-panel-top {
    display: grid;
    gap: 6px;
    padding-bottom: 16px;
  }
  .commerce-panel-top strong {
    text-align: left;
    font-size: 0.92rem;
  }
  .flow-step {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 12px 0;
  }
  .flow-step > b {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .flow-step strong {
    font-size: 0.9rem;
  }
  .flow-step span {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .platform-grid a,
  .platform-grid span {
    min-height: 48px;
    border-radius: 10px;
    font-size: 0.68rem;
  }

  .method-bridge {
    margin: -4px auto 28px;
    padding: 16px;
    border-radius: 14px;
    gap: 7px;
  }
  .method-bridge strong {
    font-size: 0.94rem;
  }
  .method-bridge span {
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .method-card {
    min-height: 238px;
    padding: 20px;
    border-radius: 16px;
  }
  .method-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 11px;
  }
  .method-icon svg {
    width: 24px;
    height: 24px;
  }
  .method-card h3 {
    font-size: 1.25rem;
    margin: 12px 0 8px;
  }
  .method-card p {
    font-size: 0.86rem;
    line-height: 1.48;
  }
  .method-journey {
    margin-top: 38px;
    padding-top: 38px;
  }
  .journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .journey-card {
    padding: 16px 14px;
    border-radius: 13px;
    min-height: 0;
  }
  .journey-card h3 {
    font-size: 1.02rem;
    margin: 18px 0 7px;
  }
  .journey-card p {
    font-size: 0.76rem;
    line-height: 1.42;
  }

  .about-grid {
    gap: 24px;
  }
  .about-visual {
    padding: 20px;
    border-radius: 16px;
  }
  .about-symbol {
    width: 76px;
    margin-bottom: 16px;
  }
  .about-brand-panel h3 {
    font-size: 1.7rem;
  }
  .about-meta {
    gap: 7px;
    margin-top: 18px;
  }
  .about-meta span {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
  .story-card {
    padding: 21px;
    border-radius: 16px;
  }
  .story-year {
    font-size: 4.6rem;
    margin: 18px 0;
  }
  .story-card h2 {
    font-size: 1.72rem;
  }
  .story-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .contact-grid {
    gap: 28px;
  }
  .contact-copy h2 {
    font-size: 2.15rem;
  }
  .contact-copy p {
    font-size: 0.94rem;
  }
  .contact-links {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-top: 20px;
  }
  .contact-links a,
  .contact-links span {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .form-card {
    padding: 20px;
    border-radius: 16px;
  }
  .form-grid {
    gap: 13px;
  }
  .field input,
  .field select,
  .field textarea {
    min-height: 46px;
    padding: 11px 12px;
    border-radius: 10px;
  }
  .field textarea {
    min-height: 112px;
  }

  /* As páginas de produto também deixam de empilhar todos os cards. */
  .benefit-card,
  .start-card {
    min-height: 210px;
    padding: 19px;
    border-radius: 15px;
  }
  .benefit-card .tag {
    margin-bottom: 20px;
  }
  .included-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .included-item {
    padding: 12px 13px;
    border-radius: 11px;
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .included-item b {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .price-card {
    padding: 22px;
    border-radius: 17px;
  }

  .floating-actions {
    right: 9px;
    bottom: 9px;
    gap: 6px;
  }
  .floating-action {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0.75rem;
    box-shadow: 0 8px 20px rgba(24, 65, 108, 0.16);
  }
}

/* V18 — tipografia confortável, fluxo minimalista e mobile sem cortes */
body {
  font-size: 16px;
  line-height: 1.58;
}
.section {
  padding: 76px 0;
}
.hero {
  padding: 126px 0 56px;
}
.hero h1 {
  font-size: clamp(2.95rem, 5.35vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  max-width: 720px;
}
.hero-tagline {
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
}
.hero .lead {
  font-size: 1.02rem;
  max-width: 670px;
}
.section-head {
  margin-bottom: 38px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.9vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 900px;
}
.clients .section-head h2 {
  font-size: clamp(2.1rem, 4.15vw, 3.85rem);
}
.story-card h2,
.contact-copy h2,
.qual-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.08;
}
.problem-card,
.service-card,
.method-card,
.journey-card,
.benefit-card,
.start-card {
  box-shadow: 0 8px 24px rgba(24, 65, 108, 0.045);
}
.problem-card {
  min-height: 230px;
  padding: 25px;
}
.problem-card h3 {
  margin-top: 42px;
}
.service-card {
  padding: 22px 24px;
}
.method-card {
  min-height: 245px;
  padding: 24px;
}
.system-card,
.commerce-panel,
.story-card,
.form-card {
  border-radius: 20px;
}

/* Navegação mais clara nas páginas internas */
.menu {
  gap: 20px;
}
.menu .home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #d8e4ef;
  border-radius: 999px;
  background: #f8fbfe;
  color: #173553;
}
.menu .home-link::before {
  content: "←";
  font-size: 0.9em;
}
.menu .home-link:hover {
  background: #eef5fb;
  color: #1e5f9f;
}

/* Disclosures aparecem expandidos no desktop e compactos no celular */
.mobile-disclosure {
  margin: 0;
  border: 0;
  background: transparent;
}
.mobile-disclosure > summary {
  display: none;
}
.mobile-disclosure-body {
  display: block;
}
.problem-disclosure {
  margin-top: 14px;
}
.commerce-disclosure,
.commerce-disclosure .mobile-disclosure-body,
.commerce-disclosure .commerce-panel {
  height: 100%;
}

/* Rodapé reduzido, sem listas repetitivas */
.footer.footer-minimal {
  padding: 44px 0 22px;
  background: #0d1f33;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(280px, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding-bottom: 30px;
}
.footer-intro {
  max-width: 390px;
}
.footer-logo {
  display: inline-flex;
  margin-bottom: 14px;
}
.footer-logo img {
  display: block;
  width: 154px;
  height: auto;
}
.footer-intro p {
  margin: 0;
  color: #b8c6d5;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 8px 24px;
}
.footer-nav a {
  color: #d4deea;
  font-size: 0.88rem;
  font-weight: 800;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #173553;
  font-size: 0.84rem;
  font-weight: 900;
}
.footer-action-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.floating-assistente {
  font: inherit;
  cursor: pointer;
  font-weight: 900;
}
.footer-action.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.footer-bottom.footer-bottom-minimal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  color: #91a4b8;
  font-size: 0.75rem;
}
.footer-bottom-minimal span:nth-child(2) {
  text-align: center;
}
.footer-bottom-minimal a {
  color: #b8c6d5;
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .menu {
    gap: 13px;
  }
  .menu > a:not(.button) {
    font-size: 0.84rem;
  }
  .menu .button.small {
    padding-inline: 15px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-actions {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
}

@media (max-width: 880px) {
  .hero {
    padding-top: 104px;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 8.5vw, 4.25rem);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-intro {
    grid-column: 1/-1;
    max-width: 520px;
  }
  .footer-bottom.footer-bottom-minimal {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .footer-bottom-minimal span:nth-child(2) {
    text-align: left;
  }
  .menu .home-link {
    border-radius: 12px;
    margin-bottom: 4px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15.5px;
    line-height: 1.55;
  }
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .section {
    padding: 44px 0;
  }
  .hero {
    padding: 88px 0 34px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 10.7vw, 3.05rem);
    line-height: 0.98;
    letter-spacing: -0.048em;
    margin-bottom: 14px;
  }
  .hero-tagline {
    font-size: 1rem;
    line-height: 1.42;
    margin-bottom: 12px;
  }
  .hero .lead {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .hero-photo,
  .hero-photo-frame,
  .wbuy-visual,
  .score-preview,
  .about-photo {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-photo-frame img,
  .about-photo img,
  .wbuy-visual img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .actions {
    gap: 9px;
  }
  .actions .button {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    min-height: 45px;
  }
  .hero-metrics {
    gap: 10px;
  }
  .hero-metrics > div {
    padding-right: 10px;
  }
  .hero-metrics strong {
    font-size: 1.2rem;
  }

  .section-head,
  .section-head.center {
    margin-bottom: 22px;
  }
  .section-head h2 {
    font-size: clamp(1.72rem, 8.2vw, 2.3rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
  }
  .section-head p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .clients .section-head h2 {
    font-size: clamp(1.72rem, 8vw, 2.25rem);
  }
  .story-card h2,
  .contact-copy h2,
  .qual-copy h2 {
    font-size: clamp(1.65rem, 7.6vw, 2.15rem);
  }

  /* Remove os trilhos horizontais que davam sensação de conteúdo cortado. */
  .problem-grid,
  .services-list,
  .method-grid,
  .benefit-grid,
  .start-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 10px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .problem-card,
  .service-card,
  .method-card,
  .benefit-card,
  .start-card {
    min-height: 0;
    padding: 18px;
    border-radius: 14px;
    scroll-snap-align: none;
  }
  .problem-card h3 {
    font-size: 1.18rem;
    margin: 24px 0 7px;
  }
  .problem-card p,
  .service-card p,
  .method-card p,
  .benefit-card p,
  .start-card p {
    font-size: 0.86rem;
    line-height: 1.48;
  }
  .service-card h3,
  .method-card h3,
  .benefit-card h3,
  .start-card h3 {
    font-size: 1.12rem;
  }
  .problem-grid-extra {
    margin-top: 0;
  }
  .problem-summary {
    padding: 16px;
    font-size: 0.92rem;
  }

  /* Conteúdo detalhado só abre quando a pessoa quiser. */
  .mobile-disclosure {
    display: block;
    margin-top: 14px;
    border: 1px solid #dce7f1;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    height: auto;
  }
  .mobile-disclosure > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 13px 15px;
    color: #173553;
    font-size: 0.88rem;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
  }
  .mobile-disclosure > summary::-webkit-details-marker {
    display: none;
  }
  .mobile-disclosure > summary::after {
    content: "+";
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #edf5fb;
    color: #2769ad;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }
  .mobile-disclosure[open] > summary::after {
    content: "−";
  }
  .mobile-disclosure[open] > summary {
    border-bottom: 1px solid #e4ecf3;
  }
  .mobile-disclosure-body {
    padding: 12px;
  }
  .problem-disclosure {
    margin-top: 10px;
  }
  .qualification-disclosure .solution-qualification {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .qualification-disclosure .qual-grid {
    display: grid;
    gap: 18px;
  }
  .commerce-disclosure,
  .commerce-disclosure .mobile-disclosure-body,
  .commerce-disclosure .commerce-panel {
    height: auto;
  }
  .method-disclosure .method-journey {
    margin-top: 28px;
    padding-top: 26px;
  }
  .method-disclosure .journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .method-disclosure .journey-card {
    padding: 14px 12px;
  }
  .method-disclosure .journey-card h3 {
    font-size: 0.95rem;
    margin: 14px 0 6px;
  }
  .method-disclosure .journey-card p {
    font-size: 0.74rem;
  }

  .solutions-layout,
  .commerce-layout,
  .about-grid,
  .contact-grid,
  .qual-grid {
    gap: 24px;
  }
  .system-card,
  .commerce-panel,
  .story-card,
  .form-card,
  .about-visual {
    padding: 18px;
    border-radius: 15px;
  }
  .system-card h3 {
    font-size: 1.55rem;
  }
  .system-layer {
    padding: 10px;
  }
  .system-layer span {
    font-size: 0.74rem;
  }
  .checks {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 18px;
  }
  .checks li {
    font-size: 0.82rem;
  }
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-meta {
    grid-template-columns: 1fr;
  }
  .story-year {
    font-size: 3.8rem;
    margin: 14px 0;
  }
  .contact-links {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .contact-links a,
  .contact-links span {
    font-size: 0.8rem;
  }
  .form-card {
    padding: 18px;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    max-width: 100%;
  }

  .video-carousel {
    grid-auto-columns: min(54vw, 205px);
    padding-inline: 22px;
  }
  .logo-item {
    width: 106px;
    height: 54px;
  }
  .logo-item img {
    max-height: 31px;
  }
  .brand-context span {
    min-width: 245px;
  }

  .footer.footer-minimal {
    padding: 36px 0 18px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 24px;
  }
  .footer-intro {
    grid-column: auto;
  }
  .footer-logo img {
    width: 142px;
  }
  .footer-intro p {
    font-size: 0.84rem;
    max-width: 340px;
  }
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
  .footer-nav a {
    font-size: 0.82rem;
  }
  .footer-actions {
    grid-column: auto;
    justify-content: flex-start;
  }
  .footer-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.8rem;
  }
  .footer-bottom.footer-bottom-minimal {
    font-size: 0.7rem;
    line-height: 1.45;
    padding-top: 15px;
  }
}


/* =========================================================
   SOLUÇÕES
   ========================================================= */

.services-disclosure {
  width: 100%;
  margin-top: 40px;
}

.services-disclosure > summary {
  display: none;
}

.services-disclosure .mobile-disclosure-body {
  width: 100%;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-width: 0;
  min-height: 250px;
  padding: 22px;

  background-color: #ffffff;
  border: 1px solid #dce6f5;
  border-radius: 14px;

  box-shadow: 0 8px 24px rgba(28, 63, 119, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #b9cff5;
  box-shadow: 0 14px 34px rgba(28, 63, 119, 0.11);
}

.service-icon {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;
  margin-bottom: 22px;

  color: #4d7fe0;
  background-color: #edf4ff;
  border: 1px solid #c8d9fa;
  border-radius: 9px;
}

.service-icon svg {
  width: 18px;
  height: 18px;
}

.service-category {
  display: block;
  margin-bottom: 8px;

  color: #4d7fe0;

  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 12px;

  color: #102e63;

  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;

  color: #68758b;

  font-size: 0.87rem;
  line-height: 1.55;
}

/* Notebook e telas intermediárias */
@media (max-width: 1100px) {
  .services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 820px) {
  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 230px;
  }
}

/* Celular */
@media (max-width: 580px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-icon {
    margin-bottom: 18px;
  }
}

/* =========================================================
   ASSISTENTE VIRTUAL ENGajar
   ========================================================= */

.engajar-chatbot,
.engajar-chatbot * {
  box-sizing: border-box;
}

.engajar-chatbot {
  --chat-primary: #29106d;
  --chat-secondary: #8f00ff;
  --chat-text: #10295a;
  --chat-muted: #66738c;
  --chat-border: #dfe5ef;
  --chat-background: #f5f6f9;

  position: fixed;
  top: 50%;
  right: 24px;
  bottom: auto;
  z-index: 9999;

  font-family: inherit;

  transform: translateY(-50%);
}

/* =========================================================
   BOTÃO FLUTUANTE
   ========================================================= */

.chatbot-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 54px;
  padding: 0 20px;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--chat-primary),
    var(--chat-secondary)
  );

  border: 0;
  border-radius: 999px;

  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;

  box-shadow: 0 14px 35px rgba(63, 20, 145, 0.32);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    visibility 0.2s ease,
    box-shadow 0.2s ease;
}

.chatbot-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(63, 20, 145, 0.4);
}

.chatbot-launcher svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

/* =========================================================
   JANELA DO CHATBOT
   ========================================================= */

.chatbot-window {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;

  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;

  width: min(360px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 40px));

  overflow: hidden;

  background: #ffffff;
  border: 1px solid rgba(223, 229, 239, 0.9);
  border-radius: 22px;

  box-shadow:
    0 25px 65px rgba(35, 24, 80, 0.2),
    0 8px 24px rgba(35, 24, 80, 0.1);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-50%) translateX(18px) scale(0.97);
  transform-origin: right center;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.engajar-chatbot.is-open .chatbot-window {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(-50%) translateX(0) scale(1);
}

.engajar-chatbot.is-open .chatbot-launcher {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =========================================================
   CABEÇALHO
   ========================================================= */

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 11px;

  min-height: 66px;
  padding: 12px 14px;

  color: #ffffff;
  background: linear-gradient(
    110deg,
    #24105f 0%,
    #5600b7 55%,
    #9600ff 100%
  );
}

.chatbot-avatar {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  font-size: 1rem;
}

.chatbot-header-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.chatbot-header-copy strong {
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.25;
}

.chatbot-header-copy span {
  display: flex;
  align-items: center;
  gap: 6px;

  margin-top: 4px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 0.7rem;
  line-height: 1;
}

.chatbot-header-copy i {
  width: 6px;
  height: 6px;

  background: #2bf4a2;
  border-radius: 50%;

  box-shadow: 0 0 8px rgba(43, 244, 162, 0.9);
}

.chatbot-close {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  padding: 0;

  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 50%;

  cursor: pointer;

  transition: background-color 0.2s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.chatbot-close svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
   MENSAGENS
   ========================================================= */

.chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;

  min-height: 0;
  overflow-y: auto;
  padding: 16px 14px 24px;

  background: var(--chat-background);

  scrollbar-width: thin;
  scrollbar-color: #c7cede transparent;
}

.chatbot-message {
  max-width: 82%;
  padding: 11px 13px;

  border-radius: 14px;

  font-size: 0.82rem;
  line-height: 1.5;

  animation: chatbot-message-in 0.25s ease;
}

.chatbot-message p {
  margin: 0;
}

.chatbot-message.assistant {
  align-self: flex-start;

  color: var(--chat-text);
  background: #ffffff;

  border: 1px solid var(--chat-border);
  border-bottom-left-radius: 5px;
}

.chatbot-message.user {
  align-self: flex-end;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--chat-primary),
    var(--chat-secondary)
  );

  border-bottom-right-radius: 5px;
}

/* Indicador de digitação */

.chatbot-message.is-typing {
  display: flex;
  align-items: center;
  gap: 5px;

  min-width: 54px;
}

.chatbot-message.is-typing span {
  width: 6px;
  height: 6px;

  background: #8791a5;
  border-radius: 50%;

  animation: chatbot-typing 1s infinite ease-in-out;
}

.chatbot-message.is-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chatbot-message.is-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

/* =========================================================
   BOTÃO DO WHATSAPP
   ========================================================= */

.chatbot-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding: 8px 13px;

  color: #ffffff;
  background: #1da851;
  border-radius: 10px;

  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.chatbot-contact-link:hover {
  color: #ffffff;
  background: #168c43;
  transform: translateY(-1px);
}

.chatbot-contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================================================
   OPÇÕES
   ========================================================= */

.chatbot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  max-height: 142px;
  overflow-y: auto;

  padding: 12px 14px;

  background: #ffffff;
  border-top: 1px solid var(--chat-border);
}

.chatbot-options button {
  min-height: 32px;
  padding: 6px 12px;

  color: var(--chat-text);
  background: #ffffff;

  border: 1px solid #d6ddea;
  border-radius: 999px;

  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.chatbot-options button:hover {
  color: #5d00c6;
  background: #f7f1ff;
  border-color: #bfa5eb;
  transform: translateY(-1px);
}

.chatbot-options button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

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

@keyframes chatbot-message-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chatbot-typing {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 580px) {
  .engajar-chatbot {
    top: auto;
    right: 12px;
    bottom: 12px;

    transform: none;
  }

  .chatbot-launcher {
    min-height: 50px;
    padding: 0 17px;
  }

  .chatbot-window {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: 12px;

    width: calc(100vw - 24px);
    height: min(600px, calc(100dvh - 24px));

    border-radius: 18px;

    transform: translateY(18px) scale(0.97);
    transform-origin: bottom right;
  }

  .engajar-chatbot.is-open .chatbot-window {
    transform: translateY(0) scale(1);
  }
}