/* ============================================================
   SEMPRE A POSTOS — PREMIUM B2B DESIGN SYSTEM
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Palette */
  --clr-void:      #060e1a;   /* deepest dark – hero/wow */
  --clr-deep:      #091830;   /* secondary dark sections  */
  --clr-navy:      #0b2d78;   /* brand blue               */
  --clr-navy-mid:  #1a3d8a;   /* slightly lighter navy    */

  /* Off-white warm (not blue-tinted — avoids SaaS template feel) */
  --clr-light:     #f2f3ee;
  --clr-paper:     #e8eae2;
  --clr-white:     #ffffff;

  /* Orange — used ONLY for primary CTA and 1–2 key accents */
  --clr-orange:    #f08a1c;
  --clr-orange-lo: rgba(240,138,28,0.12);

  /* Text on dark */
  --txt-d1: #ffffff;
  --txt-d2: rgba(255,255,255,0.58);
  --txt-d3: rgba(255,255,255,0.30);

  /* Text on light */
  --txt-l1: #060e1a;
  --txt-l2: #3a4e6e;
  --txt-l3: #7a8da8;

  /* Borders */
  --bdr-dark:  rgba(255,255,255,0.07);
  --bdr-light: rgba(11,45,120,0.10);

  /* Shadows */
  --shd-deep:  0 32px 80px rgba(0,0,0,0.55);
  --shd-card:  0 8px 32px rgba(11,45,120,0.10);

  /* Layout */
  --max-w:       1200px;
  --pad-x:       clamp(1.25rem,5vw,4rem);
  --section-y:   clamp(5rem,9vh,7.5rem);
  --header-h:    72px;

  /* Type */
  --font-base: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── 2. BASE ────────────────────────────────────────────────── */
*,::before,::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  background: var(--clr-void);
  color: var(--txt-d1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.display-lg {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.display-md {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.body-lg   { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.7; }
.body-md   { font-size: 0.9375rem; line-height: 1.65; }
.label-sm  {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── 4. SHARED LAYOUT ───────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section-y { padding-block: var(--section-y); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-d2);
  margin-bottom: 1.25rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-eyebrow--dark { color: var(--txt-l3); }

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.75rem 1.625rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--clr-orange);
  color: #fff;
  box-shadow: 0 4px 24px rgba(240,138,28,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,138,28,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--txt-d1);
  border: 1px solid var(--bdr-dark);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--txt-l1);
  border: 1px solid var(--bdr-light);
}
.btn--outline-dark:hover {
  background: rgba(11,45,120,0.06);
  border-color: rgba(11,45,120,0.22);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
}

.btn--hero-more {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(240,138,28,0.38);
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn--hero-more::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-orange);
  flex-shrink: 0;
  animation: btnDotPulse 2s ease-in-out infinite;
}
.btn--hero-more:hover {
  background: rgba(240,138,28,0.15);
  border-color: #f08a1c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 0 0 4px rgba(240,138,28,0.18),
    0 0 48px rgba(240,138,28,0.38),
    0 8px 24px rgba(0,0,0,0.35),
    inset 0 0 20px rgba(240,138,28,0.08);
}
.btn--hero-more:hover::before {
  animation: none;
  opacity: 1;
}
.btn--hero-more svg {
  color: var(--clr-orange);
  transition: transform 0.25s ease;
}
.btn--hero-more:hover svg { transform: translateX(4px); }
@keyframes btnDotPulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.3; transform: scale(0.65); }
}

/* ── 6. HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: rgba(11,45,120,0.10);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.site-header.is-scrolled .header-nav a        { color: var(--txt-l2); }
.site-header.is-scrolled .header-nav a:hover  { color: var(--txt-l1); }
.site-header.is-scrolled .header-nav a::after { background: var(--clr-navy); }
.site-header.is-scrolled .header-burger       { background: var(--bdr-light); border-color: var(--bdr-light); }
.site-header.is-scrolled .header-burger span  { background: var(--txt-l1); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}
.site-header.is-scrolled .header-logo img {
  filter: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--txt-d2);
  transition: color 0.2s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--clr-white);
  transition: width 0.3s ease;
}
.header-nav a:hover { color: var(--txt-d1); }
.header-nav a:hover::after { width: 100%; }

/* Hamburger */
.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: var(--bdr-dark);
  border-radius: 8px;
  border: 1px solid var(--bdr-dark);
}
.header-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--txt-d1);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--clr-void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--txt-d2);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--txt-d1); }

/* ── 7. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background-color: var(--clr-void);
  overflow-x: hidden; /* não corta conteúdo vertical */
}

/* Noise/texture overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.030;
}

/* Aurora blob A — azul médio, deriva para cima-direita */
.hero__bg-glow {
  position: absolute;
  width: 115%;
  height: 115%;
  top: -7%;
  left: -7%;
  background:
    radial-gradient(ellipse at 70% 38%, rgba(30,80,210,0.62)  0%, transparent 42%),
    radial-gradient(ellipse at 18% 70%, rgba(11,45,120,0.48)  0%, transparent 40%);
  filter: blur(58px);
  animation: aurora-a 14s ease-in-out infinite alternate;
  will-change: transform;
}

/* Aurora blob B — azul mais frio/claro, deriva ao contrário */
.hero__bg-line {
  position: absolute;
  width: 115%;
  height: 115%;
  top: -7%;
  left: -7%;
  background:
    radial-gradient(ellipse at 88% 80%, rgba(85,135,255,0.30) 0%, transparent 36%),
    radial-gradient(ellipse at 42% 8%,  rgba(20,65,185,0.34)  0%, transparent 36%);
  filter: blur(70px);
  animation: aurora-b 19s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes aurora-a {
  0%   { transform: scale(1)    translate(0,    0);  }
  35%  { transform: scale(1.06) translate(3%,  -3%); }
  70%  { transform: scale(0.97) translate(-2%,  4%); }
  100% { transform: scale(1.04) translate(4%,   2%); }
}
@keyframes aurora-b {
  0%   { transform: scale(1)    translate(0,    0);  }
  30%  { transform: scale(1.08) translate(-4%,  3%); }
  65%  { transform: scale(0.95) translate(3%,  -4%); }
  100% { transform: scale(1.05) translate(-2%,  3%); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + clamp(2rem, 4vh, 3.5rem)) var(--pad-x) clamp(2rem, 4vh, 3.5rem);
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - var(--header-h) - 5.5rem); /* 5.5rem = dots area */
}

.hero__content { display: flex; flex-direction: column; align-items: flex-start; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-d2);
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--bdr-dark);
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(12px);
}

.hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}
.hero__headline-line {
  display: block;
  overflow: hidden;
}
.hero__headline-line span {
  display: block;
  transform: translateY(100%);
}
.hero__headline-line--accent span { color: rgba(255,255,255,0.38); }

.hero__body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: var(--txt-d2);
  max-width: 460px;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(14px);
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(14px);
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--txt-d3);
  opacity: 0;
  transform: translateY(10px);
}
.hero__trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--txt-d3);
}

/* Hero visual — editorial photo, no card/frame */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
}
.hero__photo-wrap {
  position: relative;
  width: min(440px, 100%);
  height: 580px;
  overflow: hidden;
  border-radius: 24px;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Left-edge fade — só na borda, não avança na imagem */
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      #071a40 0%,
      transparent 14%
    );
}
/* Thin accent line on the right edge */
.hero__photo-accent {
  position: absolute;
  top: 12%;
  right: 0;
  width: 2px;
  height: 60%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--clr-orange) 30%,
    var(--clr-orange) 70%,
    transparent
  );
  opacity: 0.5;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--txt-d3));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 0.7; transform: scaleY(1); }
}

/* ── 8. VALUE STRIP (provas reais) ──────────────────────────── */
.value-strip {
  background: var(--clr-deep);
  border-top: 1px solid var(--bdr-dark);
  border-bottom: 1px solid var(--bdr-dark);
  padding: 3rem var(--pad-x);
}
.value-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 2rem;
  position: relative;
}
.value-strip__item + .value-strip__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--bdr-dark);
}
.value-strip__number {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.value-strip__number span { color: var(--clr-orange); }
.value-strip__label {
  font-size: 0.8125rem;
  color: var(--txt-d2);
  line-height: 1.5;
  max-width: 150px;
}

/* ── 9. PROPOSTA (value proposition) ───────────────────────── */
.proposta {
  background: var(--clr-light);
  padding-block: var(--section-y);
}
.proposta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.proposta__left { position: sticky; top: calc(var(--header-h) + 2rem); }
.proposta__cta--mobile { display: none; }
.proposta__headline {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--txt-l1);
  margin-bottom: 1.25rem;
}
.proposta__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--txt-l2);
  margin-bottom: 2rem;
  max-width: 400px;
}

.proposta__benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.benefit-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--clr-white);
  border: 1px solid var(--bdr-light);
  border-radius: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.benefit-item:hover {
  box-shadow: var(--shd-card);
  transform: translateY(-2px);
}
.benefit-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--clr-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-navy);
}
.benefit-item__icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
.benefit-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--txt-l1);
  margin-bottom: 0.25rem;
}
.benefit-item__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--txt-l2);
}

/* ── 10. FEATURES (TAB SYSTEM) ──────────────────────────────── */
.features {
  background: var(--clr-deep);
  padding-block: var(--section-y);
  overflow: hidden;
}
.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.features__header {
  margin-bottom: 3.5rem;
  max-width: 680px;
}
.features__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--txt-d1);
}

/* Tabs navigation */
.features__tablist {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 3rem;
  position: relative;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.features__tablist::-webkit-scrollbar { display: none; }

.features__tab {
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--txt-d2);
  border: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.features__tab:hover { color: var(--txt-d1); }
.features__tab.is-active {
  color: var(--txt-d1);
  background: rgba(255,255,255,0.07);
  border-color: var(--bdr-dark);
}

.feature-title-plus {
  display: inline-block;
  margin-left: 0.06em;
  color: var(--clr-orange);
  font-weight: 800;
  transform: translateY(-0.08em);
}

.feature-panel__title .feature-title-plus {
  font-size: 0.86em;
  text-shadow: 0 0 18px rgba(240,138,28,0.35);
}

/* Feature panels */
.features__panels { position: relative; min-height: 280px; }

.feature-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.feature-panel.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.feature-panel__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid var(--bdr-dark);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-panel__icon svg {
  width: 32px;
  height: 32px;
  color: var(--txt-d2);
  stroke-width: 1.5;
}
.feature-panel__title {
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--txt-d1);
  margin-bottom: 1rem;
}
.feature-panel__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--txt-d2);
  max-width: 460px;
}

.feature-panel__content { position: relative; z-index: 1; }

.feature-panel__visual {
  position: relative;
  height: 260px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.feature-panel__visual-inner {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 80%;
}
.feature-panel__bar {
  height: 6px;
  border-radius: 100px;
  background: var(--bdr-dark);
  overflow: hidden;
}
.feature-panel__bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--clr-navy-mid), var(--clr-orange));
  animation: barFill 2s ease-out infinite alternate;
}
@keyframes barFill {
  from { width: 30%; }
  to   { width: 90%; }
}

/* ── Feature Visuals — SVG line-art ─────────────────────────── */

/* SVG container */
.fv-svg {
  width: 88%;
  max-height: 230px;
  overflow: visible;
  filter: drop-shadow(0 22px 42px rgba(0,0,0,0.28));
}

/* Cursor piscante (PDV) */
.fv-cursor {
  animation: fvCursorBlink 1s step-end infinite;
  opacity: 0;
}
@keyframes fvCursorBlink {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

/* Ondas de toque (PDV Móvel) */
.fv-ripple {
  animation: fvRipple 2s ease-out infinite;
  opacity: 0;
}
.fv-ripple--2 {
  animation-delay: 0.7s;
}
@keyframes fvRipple {
  0%   { opacity: 0.7; transform: scale(0.6); }
  100% { opacity: 0;   transform: scale(1.4); }
}

/* Alerta piscante (Estoque – Etanol) */
.fv-alert-blink {
  animation: fvAlertBlink 1.2s ease-in-out infinite;
}
@keyframes fvAlertBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Anel de fidelidade (CashGas) */
.fv-cashgas-ring {
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  animation: fvCashgasSpin 3s linear infinite;
}
@keyframes fvCashgasSpin {
  to { stroke-dashoffset: -88; }
}

/* Moedas flutuantes (CashGas) */
.fv-coin {
  opacity: 0;
  animation: fvCoinFloat 2.4s ease-in-out infinite;
}
.fv-coin--1 { animation-delay: 0s; }
.fv-coin--2 { animation-delay: 0.6s; }
.fv-coin--3 { animation-delay: 1.2s; }
.fv-coin--4 { animation-delay: 1.8s; }
@keyframes fvCoinFloat {
  0%   { opacity: 0;   transform: translateY(0); }
  15%  { opacity: 0.9; }
  100% { opacity: 0;   transform: translateY(-28px); }
}

/* Checkmarks (Comanda+) */
.fv-check { opacity: 0; }

/* Pontos na linha do gráfico (Relatórios) */
.fv-dot-reveal {
  opacity: 0;
  transform: scale(0);
}
.fv-dot-reveal--1 { animation: fvDotPop 0.4s 1.5s ease both; }
.fv-dot-reveal--2 { animation: fvDotPop 0.4s 1.8s ease both; }
@keyframes fvDotPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* Pulso nos nós de rede (Multiunidades) */
.fv-node-pulse {
  animation: fvNodePulse 2s ease-out infinite;
}
.fv-node-pulse--2 { animation-delay: 1s; }
@keyframes fvNodePulse {
  0%   { r: 3;  opacity: 0.9; }
  100% { r: 9;  opacity: 0;   }
}

/* ── 11. SHOWCASE / WOW ─────────────────────────────────────── */
.showcase {
  background: var(--clr-void);
  padding-block: var(--section-y);
  overflow: hidden;
}
.showcase__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-d3);
  margin-bottom: 3rem;
}
.showcase__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--bdr-dark);
  flex-shrink: 0;
}

.showcase__statement {
  font-size: clamp(2.5rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  overflow: hidden;
}
.showcase__statement-line {
  display: block;
  overflow: hidden;
}
.showcase__statement-line span {
  display: block;
  transform: translateY(110%);
}
.showcase__statement-line:first-child span { color: var(--clr-white); }
.showcase__statement-line:last-child span  { color: rgba(255,255,255,0.20); }

.showcase__divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 3rem 0;
}
.showcase__divider-line {
  flex: 1;
  height: 1px;
  background: var(--bdr-dark);
}
.showcase__divider-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-d3);
  white-space: nowrap;
}

/* Marquee strip */
.marquee-wrap {
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid var(--bdr-dark);
  border-bottom: 1px solid var(--bdr-dark);
  margin-bottom: 3.5rem;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  padding-right: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-d3);
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-orange);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* Mobile showcase grid — imagem + texto */
.showcase__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-top: 0.5rem;
}

/* Frame da imagem — portrait editorial */
.showcase__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  isolation: isolate;
}

/* Leque de folhas laranja — arte decorativa atrás da imagem mobile */
.showcase__art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.showcase__art--fan {
  inset: 0;
}
.showcase__fan-card {
  position: absolute;
  inset: 8% 12%;
  border-radius: 18px;
  transform-origin: bottom center;
}
/* Folha de trás — mais fraca */
.showcase__fan-card--c {
  background: rgba(240,138,28,0.20);
  transform: rotate(10deg);
}
/* Folha do meio */
.showcase__fan-card--b {
  background: rgba(240,138,28,0.42);
  transform: rotate(3deg);
}
/* Folha da frente — mais forte */
.showcase__fan-card--a {
  background: rgba(240,138,28,0.72);
  transform: rotate(-5deg);
}

.showcase__media-img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.38));
  position: relative;
  z-index: 1;
  transform: translate(1.25rem, 0.25rem);
}
.showcase__media-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(6,14,26,0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bdr-dark);
  border-radius: 100px;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--txt-d1);
  z-index: 2;
}
.showcase__media-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: ping 2s ease-in-out infinite;
}

/* Copy side */
.showcase__copy {
  display: flex;
  flex-direction: column;
}
.showcase__copy-headline {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--txt-d1);
  margin-bottom: 1.25rem;
}
.showcase__copy-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--txt-d2);
  margin-bottom: 2rem;
  max-width: 440px;
}

/* Feature points */
.showcase__points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.showcase__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--txt-d2);
  line-height: 1.5;
}
.showcase__point-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--txt-d3);
}
.showcase__point-icon svg { width: 100%; height: 100%; }

/* Mobile responsivo */
@media (max-width: 768px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .showcase__copy { order: 1; }
  .showcase__media {
    order: 2;
    max-width: 420px;
    margin: 0 auto;
  }
  .showcase__media-img {
    transform: translate(0.65rem, 0.2rem);
  }
}

/* ── 12. SOBRE / CREDIBILIDADE ──────────────────────────────── */
.sobre {
  background: var(--clr-light);
  padding-block: var(--section-y);
}
.sobre__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.sobre__content { display: flex; flex-direction: column; }
.sobre__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.sobre__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--txt-l1);
  margin-bottom: 1.25rem;
}
.sobre__body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--txt-l2);
  margin-bottom: 2.5rem;
}
.sobre__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.sobre__stat {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}
.sobre__stat:last-child { border-right: none; }
.sobre__stat:hover { background: rgba(255,255,255,0.04); }
.sobre__stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}
.sobre__stat-number span { color: var(--clr-orange); }
.sobre__stat-label {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.sobre__stat-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt-l3);
  margin-left: 4px;
}

/* Right side — imagem com fundo transparente */
.sobre__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.sobre__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.sobre__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,0.45));
}
.sobre__photo-overlay { display: none; }
.sobre__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(6,14,26,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bdr-dark);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sobre__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}
.sobre__badge-text { font-size: 0.8125rem; font-weight: 600; color: var(--txt-d1); }
.sobre__badge-sub  { font-size: 0.72rem; color: var(--txt-d2); margin-top: 1px; }

/* ── 13. SUPORTE + FORM ─────────────────────────────────────── */
.suporte {
  background: var(--clr-deep);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
.suporte__bg-glow {
  position: absolute;
  left: -20%;
  top: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(11,45,120,0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.suporte__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
}
.suporte__content {
  align-self: center;
  position: relative;
  top: calc(-1 * clamp(1.5rem, 4vw, 3rem));
}
.suporte__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  align-self: end;
  max-height: 85vh;
  background: var(--clr-deep);
}
.suporte__art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: auto;
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 58%, transparent 76%);
  mask-image: linear-gradient(to bottom, black 58%, transparent 76%);
}
.suporte__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 8px 32px rgba(11,45,120,0.12));
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image:         linear-gradient(to bottom, black 80%, transparent 100%);
}
.suporte__headline {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--txt-d1);
  margin-bottom: 1.25rem;
}
.suporte__body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--txt-d2);
  margin-bottom: 2.5rem;
}
.suporte__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.suporte__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--txt-d2);
}
.suporte__list-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--txt-d3);
  stroke-width: 1.5;
}

/* Form card — glass premium */
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bdr-dark);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.form-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--txt-d1);
  margin-bottom: 0.5rem;
}
.form-card__sub {
  font-size: 0.8125rem;
  color: var(--txt-d2);
  margin-bottom: 1.75rem;
}

.form-field { margin-bottom: 1.125rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-d3);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font-base);
  color: var(--txt-d1);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-input::placeholder { color: var(--txt-d3); }
.form-input:focus {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.09);
}
.form-submit {
  width: 100%;
  background: var(--clr-orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-family: var(--font-base);
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(240,138,28,0.30);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,138,28,0.40);
}
.form-submit:active { transform: scale(0.98); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-message {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  line-height: 1.6;
  display: none;
}
.form-message.is-success {
  display: block;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #86efac;
}
.form-message.is-error {
  display: block;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5;
}

/* ── 14. SIMULADOR ──────────────────────────────────────────── */
.simulador {
  background: var(--clr-white);
  padding-block: var(--section-y);
}
.simulador__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.sim__header {
  text-align: center;
  margin-bottom: 3rem;
}
.sim__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--txt-l1);
  margin-bottom: 0.75rem;
}
.sim__headline em {
  font-style: normal;
  color: var(--clr-navy);
}
.sim__brand {
  color: var(--clr-orange);
  text-shadow: 0 0 24px rgba(240,138,28,0.28);
}
.sim__sub {
  font-size: 0.9375rem;
  color: var(--txt-l2);
  line-height: 1.6;
}
.sim__card {
  background: #f5f7fb;
  border: 1px solid var(--bdr-light);
  border-radius: 24px;
  padding: clamp(1.75rem, 5vw, 3rem);
  box-shadow: var(--shd-card);
}
.sim__card.is-intro {
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.sim__card.is-intro .sim__progress,
.sim__card.is-intro [data-sim-steps] {
  display: none;
}
.sim__intro {
  text-align: center;
  animation: sim-in 0.3s ease;
  display: flex;
  justify-content: center;
}
.sim__intro-title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--txt-l1);
  margin-bottom: 0.75rem;
}
.sim__intro-body {
  max-width: 440px;
  margin: 0 auto 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--txt-l2);
}
.sim__start {
  min-width: 150px;
}

/* Progress */
.sim__progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.sim__progress-track {
  flex: 1;
  height: 4px;
  background: rgba(11,45,120,0.10);
  border-radius: 2px;
  overflow: hidden;
}
.sim__progress-fill {
  height: 100%;
  background: var(--clr-orange);
  border-radius: 2px;
  width: 25%;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sim__step-label {
  font-size: 0.8125rem;
  color: var(--txt-l3);
  white-space: nowrap;
  font-weight: 500;
}

/* Steps */
.sim__step { display: none; }
.sim__step.is-active { display: block; animation: sim-in 0.28s ease; }
@keyframes sim-in {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}

.sim__question {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: var(--txt-l1);
  margin-bottom: 1.375rem;
  line-height: 1.35;
}

/* Options */
.sim__options {
  display: grid;
  gap: 0.625rem;
}
.sim__options--wrap  { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
.sim__options--grid3 { grid-template-columns: repeat(3, 1fr); }
.sim__options--grid4 { grid-template-columns: repeat(4, 1fr); }
.sim__options--col   { grid-template-columns: 1fr; }

.sim__opt {
  background: #ffffff;
  border: 2px solid rgba(11,45,120,0.12);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--txt-l1);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  text-align: left;
  font-family: var(--font-base);
  line-height: 1.4;
}
.sim__opt:hover {
  border-color: var(--clr-navy);
  background: rgba(11,45,120,0.04);
  transform: translateY(-1px);
}
.sim__opt.is-selected {
  border-color: var(--clr-navy);
  background: rgba(11,45,120,0.08);
  color: var(--clr-navy);
  font-weight: 600;
}
.sim__opt--pdv {
  text-align: center;
  min-height: 66px;
  padding: 0.7rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
}
.sim__opt--pdv strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 700;
}
.sim__opt--pdv span {
  display: block;
  font-size: 0.72rem;
  line-height: 1;
  color: currentColor;
  opacity: 0.68;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Result */
.sim__result { text-align: center; animation: sim-in 0.35s ease; }
.sim__result-check {
  width: 52px; height: 52px;
  background: rgba(11,45,120,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--clr-navy);
}
.sim__result-check svg { width: 24px; height: 24px; }
.sim__result-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--txt-l1);
  margin-bottom: 0.625rem;
}
.sim__result-body {
  font-size: 0.9375rem;
  color: var(--txt-l2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sim__summary {
  background: #ffffff;
  border: 1px solid var(--bdr-light);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.sim__summary li {
  font-size: 0.875rem;
  color: var(--txt-l2);
  display: flex; gap: 0.625rem; align-items: baseline;
}
.sim__summary li strong { color: var(--txt-l1); font-weight: 600; }
.sim__summary-dot {
  width: 5px; height: 5px;
  min-width: 5px;
  background: var(--clr-orange);
  border-radius: 50%;
  display: inline-block;
  margin-top: 5px;
}
.sim__wa-btn { display: inline-flex; align-items: center; gap: 0.5rem; }
.sim__restart {
  display: block;
  margin: 1rem auto 0;
  font-size: 0.8125rem;
  color: var(--txt-l3);
  background: none; border: none;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-base);
}
.sim__restart:hover { color: var(--txt-l2); }

/* ── 15. CTA FINAL ──────────────────────────────────────────── */
.cta-final {
  background: var(--clr-void);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(11,45,120,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.cta-final__headline {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--txt-d1);
  margin-bottom: 1.25rem;
}
.cta-final__headline em {
  font-style: normal;
  color: rgba(255,255,255,0.3);
}
.cta-final__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--txt-d2);
  margin-bottom: 2.5rem;
}
.cta-final__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.cta-final__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cta-final__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--txt-d3);
  transition: color 0.2s;
}
.cta-final__contact-item:hover { color: var(--txt-d2); }
.cta-final__contact-item svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
}

/* ── 16. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-void);
  border-top: 1px solid var(--bdr-dark);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad-x) 1.5rem;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(430px, 1.55fr) minmax(170px, 0.56fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
.site-footer__brand {
  max-width: 260px;
}
.site-footer__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-d1);
  margin-bottom: 1.125rem;
}
.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
}
.site-footer__nav {
  justify-self: end;
}
.site-footer__nav a {
  width: fit-content;
  font-size: 0.875rem;
  color: var(--txt-d2);
  padding-block: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer__nav a:hover {
  color: var(--clr-orange);
  transform: translateX(3px);
}
.site-footer__contact {
  min-width: 0;
}
.site-footer__contact-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.85fr) minmax(240px, 1.15fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.site-footer__contact-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--txt-d2);
}
.site-footer__contact-item[href] {
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer__contact-item[href]:hover {
  color: var(--txt-d1);
  transform: translateX(3px);
}
.site-footer__contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-orange);
}
.site-footer__contact-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}
.site-footer__bottom {
  max-width: var(--max-w);
  margin: clamp(2rem, 5vw, 3.5rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.site-footer__copy {
  font-size: 0.8125rem;
  color: var(--txt-d3);
}
.site-footer__logo img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.site-footer__logo:hover img { opacity: 1; }

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
  .site-footer__contact {
    grid-column: 1 / -1;
  }
  .site-footer__nav {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__brand,
  .site-footer__contact {
    grid-column: auto;
  }
  .site-footer__contact-grid {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    display: flex;
    padding-bottom: 4.25rem;
  }
  .site-footer__copy {
    display: block;
    max-width: 18rem;
    line-height: 1.5;
  }

  .sim__options--grid3 { grid-template-columns: 1fr; }
}

/* ── 17. WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: #25d366;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(7,32,13,0.45);
  transition: width 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(7,32,13,0.55); }
.whatsapp-float svg { fill: #fff; flex-shrink: 0; width: 30px; height: 30px; }
.whatsapp-float__label {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.22s ease, max-width 0.28s ease;
  overflow: hidden;
}
@media (hover: hover) {
  .whatsapp-float:hover {
    width: 210px;
    justify-content: flex-start;
    padding: 0 0.875rem;
    gap: 0.5rem;
  }
  .whatsapp-float:hover .whatsapp-float__label { opacity: 1; max-width: 140px; }
}

/* ── 18. HERO CAROUSEL ──────────────────────────────────────── */

/*
 * Layout: carousel é uma coluna flex com track (conteúdo) + controls (dots).
 * Os slides ficam em display:none / display:block — sem position:absolute —
 * para que o conteúdo nunca seja cortado pelo hero. GSAP gerencia opacidade.
 */
.hero__carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero__track {
  position: relative;
  flex: 1;
}

/* Slides — inline (não absolute) para respeitar altura do conteúdo */
.hero__slide {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.hero__slide.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Durante transição GSAP o slide saindo precisa ficar sobreposto ao entrante */
.hero__slide.is-leaving {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.hero__slide.is-active:not(.is-leaving) { position: relative; z-index: 2; }

/* GSAP initial states — inline styles (GSAP.set) sobrescrevem o CSS */
.hero__slide .hero__tag               { opacity: 0; transform: translateY(12px); }
.hero__slide .hero__headline-line span { transform: translateY(102%); }
.hero__slide .hero__body              { opacity: 0; transform: translateY(14px); }
.hero__slide .hero__chip              { opacity: 0; transform: translateY(12px); }
.hero__slide .hero__ctas              { opacity: 0; transform: translateY(12px); }
.hero__slide .hero__visual            { opacity: 0; }

/* Cards grid 2×2 */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.875rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--txt-d1);
  white-space: nowrap;
}
.hero__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  flex-shrink: 0;
}

/* Dots — inline no fluxo, abaixo do conteúdo */
.hero__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0 2.5rem;
  position: relative;
  z-index: 5;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
  padding: 0;
  flex-shrink: 0;
}
.hero__dot.is-active {
  width: 28px;
  background: var(--clr-white);
}
.hero__dot:hover:not(.is-active) { background: rgba(255,255,255,0.45); }

/* ── 18b. GSAP INITIAL STATES ───────────────────────────────── */
.gsap-fade-up { opacity: 0; transform: translateY(28px); }
.gsap-fade-in  { opacity: 0; }
.gsap-clip     { clip-path: inset(0 100% 0 0); }

/* ── 19. SCROLL REVEAL (fallback for no-JS) ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── 20. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 1rem;
  }
  .hero__visual { display: none; }
  .hero__content { max-width: 640px; }
  .hero__headline { font-size: clamp(2rem, 5.5vw, 3rem); }

  .proposta__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .proposta__left  { position: static; }
  .proposta__benefits {
    display: flex;
    width: 100%;
  }
  .benefit-item {
    opacity: 1;
    transform: none;
  }
  .proposta__cta--desktop { display: none; }
  .proposta__cta--mobile {
    display: inline-flex;
    align-self: flex-start;
    margin-top: -0.75rem;
  }

  .feature-panel { grid-template-columns: 1fr; }
  .feature-panel__visual { display: none; }
  .features__panels { min-height: 220px; }

  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__map   { justify-self: center; }
  .sobre__stats  { grid-template-columns: 1fr; border: none; }
  .sobre__stat   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sobre__stat:last-child { border-bottom: none; }

  .suporte__inner  { grid-template-columns: 1fr; }
  .suporte__content { top: 0; }
  .suporte__visual { display: none; }
}

@media (max-width: 768px) {
  :root { --section-y: clamp(3.5rem, 8vh, 5rem); }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .header-burger { display: flex; }

  .value-strip {
    padding: 1.75rem 1rem;
  }
  .value-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .value-strip__item {
    padding: 0.75rem 0.35rem;
  }
  .value-strip__item + .value-strip__item::before {
    left: 0;
    top: 18%;
    width: 1px;
    height: 64%;
  }
  .value-strip__number {
    font-size: clamp(1.35rem, 8vw, 2.2rem);
    letter-spacing: 0;
    margin-bottom: 0.4rem;
  }
  .value-strip__label {
    max-width: 7rem;
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .showcase__statement { font-size: clamp(2rem, 10vw, 4.5rem); }

  .features__header {
    margin-bottom: 2rem;
  }
  .features__tablist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    overflow: visible;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
  }
  .features__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 34px;
    padding: 0.45rem 0.45rem;
    border-radius: 999px;
    font-size: 0.68rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .feature-panel__icon {
    display: none;
  }
  .features__tablist .features__tab:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.175rem);
  }
  .feature-panel__visual {
    display: flex;
    height: 170px;
    margin-top: 1.25rem;
  }
  .fv-svg {
    width: min(100%, 280px);
    max-height: 165px;
  }

  .cta-final__ctas { flex-direction: column; align-items: center; }
  .cta-final .btn { width: 100%; max-width: 320px; }

  .sim__options--grid3,
  .sim__options--grid4 { grid-template-columns: repeat(2, 1fr); }
  .sim__options--wrap  { grid-template-columns: repeat(2, 1fr); }
  .sim__wa-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; }

  .features__tab { font-size: 0.64rem; padding: 0.4rem 0.35rem; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 1rem; right: 1rem; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ══════════════════════════════════════════════════════════════
   RITMO ALTERNADO AZUL ↔ BRANCO
   ──────────────────────────────────────────────────────────────
   1. Hero          → navy gradient   (escuro)
   2. Value strip   → azul profundo   (escuro)
   3. Proposta      → branco          (claro)
   4. Features      → navy            (escuro)
   5. Showcase      → branco/off-wht  (claro)
   6. Sobre         → azul profundo   (escuro)
   7. Suporte       → navy escuro     (escuro)
   8. FAQ           → branco          (claro)
   9. CTA Final     → navy            (escuro)
  10. Footer        → navy mais esc.  (escuro)
   ══════════════════════════════════════════════════════════════ */

/* Body — base clara (fallback entre seções) */
body {
  background: #f5f7fb;
  color: var(--txt-l1);
}

/* ── 1. HERO — gradiente navy ──────────────────────────────── */
.hero {
  background-color: #0b2d78;
  background-image: linear-gradient(140deg, #071a40 0%, #0b2d78 55%, #1640a0 100%);
}
/* aurora blobs definidos na base — sem override necessário */

/* ── 2. VALUE STRIP — hero tone ── */
.value-strip {
  background: #0d2040;
  border-top-color:    rgba(255,255,255,0.06);
  border-bottom-color: rgba(255,255,255,0.06);
}
.value-strip__number        { color: #ffffff; }
.value-strip__number span   { color: var(--clr-orange); }
.value-strip__label         { color: rgba(255,255,255,0.55); }
.value-strip__item + .value-strip__item::before { background: rgba(255,255,255,0.08); }

/* ── 3. PROPOSTA — branco ──────────────────────────────────── */
.proposta { background: #ffffff; }
.proposta .section-eyebrow          { color: var(--txt-l3); }
.proposta .section-eyebrow::before  { background: var(--clr-orange); }
/* (headline/body/cards já usam --txt-l1/l2 na base) */

/* ── 4. FEATURES — hero tone ────────────────────────────────── */
.features {
  background: #0d2040;
}
.features .section-eyebrow         { color: rgba(255,255,255,0.55); }
.features .section-eyebrow::before { background: var(--clr-orange); }
.features__headline                 { color: #ffffff; }
.features__tab                      { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.10); }
.features__tab:hover                { color: #ffffff; background: rgba(255,255,255,0.05); }
.features__tab.is-active {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}
.feature-panel__icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #ffffff;
}
.feature-panel__title  { color: #ffffff; }
.feature-panel__text   { color: rgba(255,255,255,0.65); }
.feature-panel__bar    { background: rgba(255,255,255,0.10); }

/* ── 5. SHOWCASE — off-white quente ───────────────────────── */
.showcase { background: #f5f7fb; }
.showcase__eyebrow                          { color: var(--txt-l3); }
.showcase__eyebrow::before                  { background: rgba(11,45,120,0.15); }
.showcase__statement-line:first-child span  { color: var(--txt-l1); }
.showcase__statement-line:last-child  span  { color: rgba(11,45,120,0.15); }
.showcase__divider-line   { background: var(--bdr-light); }
.showcase__divider-label  { color: var(--txt-l3); }
.marquee-wrap {
  border-top-color:    var(--bdr-light);
  border-bottom-color: var(--bdr-light);
}
.marquee-item            { color: var(--txt-l3); }
.marquee-item::after     { opacity: 0.3; }
.showcase__copy-headline { color: var(--txt-l1); }
.showcase__copy-body     { color: var(--txt-l2); }
.showcase__point         { color: var(--txt-l2); }
.showcase__point-icon    { color: var(--txt-l3); }
.showcase .section-eyebrow            { color: var(--txt-l3); }
.showcase .section-eyebrow::before    { background: var(--clr-orange); }
.showcase .btn--ghost {
  color: var(--txt-l1);
  border-color: rgba(11,45,120,0.20);
}
.showcase .btn--ghost:hover {
  background: rgba(11,45,120,0.06);
  border-color: rgba(11,45,120,0.30);
}
/* Showcase image frame — light-friendly */
.showcase__media-img { filter: drop-shadow(0 28px 52px rgba(11,45,120,0.12)); }

/* ── 6. SOBRE — hero tone ─────────────────────────────── */
.sobre {
  background: #0d2040;
}
.sobre__headline          { color: #ffffff; }
.sobre__body              { color: rgba(255,255,255,0.65); }
.sobre .section-eyebrow   { color: rgba(255,255,255,0.50); }
.sobre .section-eyebrow::before { background: var(--clr-orange); }
.sobre__stats {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.sobre__stat              { border-bottom-color: rgba(255,255,255,0.06); }
.sobre__stat:hover        { background: rgba(255,255,255,0.04); }
.sobre__stat-number       { color: #ffffff; }
.sobre__stat-number span  { color: var(--clr-orange); }
.sobre__stat-unit         { color: rgba(255,255,255,0.45); }
.sobre__stat-label        { color: rgba(255,255,255,0.55); }
.sobre .btn--ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.22);
}
.sobre .btn--ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
}

/* Mapa do Brasil */
.sobre__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  justify-self: end;
}
.sobre__map-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.sobre__map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-orange);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(240,138,28,0.7);
  animation: map-pulse 2.2s ease-in-out infinite;
}
@keyframes map-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(240,138,28,0.7); }
  50%       { opacity: 0.5; box-shadow: 0 0 4px rgba(240,138,28,0.3); }
}
.sobre__map-svg {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 34px rgba(0,0,0,0.34));
}
.sobre__map-svg svg,
.sobre__map-svg img {
  display: block;
  width: 100%;
  height: auto;
}
.sobre__map-svg svg {
  max-width: 420px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.sobre__map-svg g {
  cursor: pointer;
}
.sobre__map-svg path {
  fill: rgba(255,255,255,0.01);
  stroke: rgba(173,191,220,0.88);
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
  transition:
    fill 0.22s ease,
    stroke 0.22s ease,
    stroke-width 0.22s ease,
    filter 0.22s ease;
}
.sobre__map-marker {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -100%);
  color: var(--clr-orange);
}
.sobre__map-marker-pin {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(240,138,28,0.35));
  animation: map-marker-float 2.8s ease-in-out infinite;
}
.sobre__map-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}
.sobre__map-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% - 3px);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(240,138,28,0.24);
  transform: translate(-50%, -50%);
  animation: map-marker-pulse 2.8s ease-in-out infinite;
}
.sobre__map-marker:hover,
.sobre__map-marker:focus-visible {
  color: #ffb159;
}
.sobre__map-marker:hover .sobre__map-marker-pin,
.sobre__map-marker:focus-visible .sobre__map-marker-pin {
  filter: drop-shadow(0 0 12px rgba(240,138,28,0.6));
}
.sobre__map-marker--br-rs:hover ~ svg #br-rs path,
.sobre__map-marker--br-rs:focus-visible ~ svg #br-rs path,
.sobre__map-marker--br-sc:hover ~ svg #br-sc path,
.sobre__map-marker--br-sc:focus-visible ~ svg #br-sc path,
.sobre__map-marker--br-pr:hover ~ svg #br-pr path,
.sobre__map-marker--br-pr:focus-visible ~ svg #br-pr path,
.sobre__map-marker--br-sp:hover ~ svg #br-sp path,
.sobre__map-marker--br-sp:focus-visible ~ svg #br-sp path,
.sobre__map-marker--br-rj:hover ~ svg #br-rj path,
.sobre__map-marker--br-rj:focus-visible ~ svg #br-rj path,
.sobre__map-svg g:hover path,
.sobre__map-svg g:focus-visible path {
  fill: rgba(240,138,28,0.18);
  stroke: rgba(240,138,28,0.92);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 8px rgba(240,138,28,0.28));
}
@keyframes map-marker-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes map-marker-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.12; transform: translate(-50%, -50%) scale(1.65); }
}

/* ── 7. SUPORTE — branco ───────────────────────────────────── */
.suporte { background: #ffffff; }
.suporte__visual { background: #ffffff; }
.suporte__bg-glow {
  background: radial-gradient(ellipse, rgba(11,45,120,0.05) 0%, transparent 70%);
}
.suporte .section-eyebrow         { color: var(--txt-l3); }
.suporte .section-eyebrow::before { background: var(--clr-orange); }
.suporte__headline { color: var(--txt-l1); }
.suporte__body     { color: var(--txt-l2); }
.suporte__list-item     { color: var(--txt-l2); }
.suporte__list-item svg { color: var(--clr-navy); }

/* Form card em fundo branco */
.suporte .form-card {
  background: #f5f7fb;
  border: 1px solid var(--bdr-light);
  box-shadow: var(--shd-card);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.suporte .form-card__title { color: var(--txt-l1); }
.suporte .form-card__sub   { color: var(--txt-l2); }
.suporte .form-label       { color: var(--txt-l3); }
.suporte .form-input {
  background: #ffffff;
  border-color: rgba(11,45,120,0.14);
  color: var(--txt-l1);
}
.suporte .form-input::placeholder { color: var(--txt-l3); }
.suporte .form-input:focus {
  border-color: var(--clr-navy);
  background: #ffffff;
}
.suporte .form-message.is-error {
  background: rgba(200,40,40,0.07);
  color: #b91c1c;
  border: 1px solid rgba(200,40,40,0.15);
}
.suporte .form-message.is-success {
  background: rgba(11,45,120,0.06);
  color: var(--txt-l2);
  border: 1px solid rgba(11,45,120,0.12);
}

/* ── 8. SIMULADOR — hero tone ─────────────────────────────── */
.simulador { background: #0d2040; }
.simulador .section-eyebrow         { color: rgba(255,255,255,0.55); }
.simulador .section-eyebrow::before { background: var(--clr-orange); }
.simulador .sim__headline           { color: var(--txt-d1); }
.simulador .sim__headline em        { color: rgba(255,255,255,0.40); }
.simulador .sim__brand              { color: var(--clr-orange); }
.simulador .sim__sub                { color: var(--txt-d2); }
.simulador .sim__card               { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.10); }
.simulador .sim__card.is-intro      { background: transparent; border-color: transparent; box-shadow: none; }
.simulador .sim__intro-title        { color: var(--txt-d1); }
.simulador .sim__intro-body         { color: var(--txt-d2); }
.simulador .sim__progress-track     { background: rgba(255,255,255,0.15); }
.simulador .sim__step-label         { color: var(--txt-d3); }
.simulador .sim__question           { color: var(--txt-d1); }
.simulador .sim__opt                { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); color: var(--txt-d1); }
.simulador .sim__opt:hover          { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.28); }
.simulador .sim__opt.is-selected    { background: rgba(255,255,255,0.18); border-color: var(--clr-orange); color: var(--txt-d1); }
.simulador .sim__result-check       { background: rgba(255,255,255,0.12); color: var(--txt-d1); }
.simulador .sim__result-title       { color: var(--txt-d1); }
.simulador .sim__result-body        { color: var(--txt-d2); }
.simulador .sim__summary            { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.10); }
.simulador .sim__summary li         { color: var(--txt-d2); }
.simulador .sim__summary li strong  { color: var(--txt-d1); }
.simulador .sim__restart            { color: var(--txt-d3); }
.simulador .sim__restart:hover      { color: var(--txt-d2); }

/* ── 9. CTA FINAL — branco ───────────────────────────────── */
.cta-final { background: #ffffff; }
.cta-final__bg {
  background: radial-gradient(ellipse at 50% 80%, rgba(11,45,120,0.05) 0%, transparent 65%);
}
.cta-final__headline                { color: var(--txt-l1); }
.cta-final__headline em             { color: var(--clr-navy); }
.cta-final__body                    { color: var(--txt-l2); }
.cta-final__contact-item            { color: var(--txt-l3); }
.cta-final__contact-item:hover      { color: var(--txt-l2); }
.cta-final .btn--ghost              { color: var(--txt-l1); border-color: var(--bdr-light); }
.cta-final .btn--ghost:hover        { background: rgba(11,45,120,0.04); border-color: rgba(11,45,120,0.2); }

/* ── 10. FOOTER — navy mais escuro ───────────────────────── */
.site-footer {
  background: #071429;
  border-top-color: rgba(255,255,255,0.06);
}

/* ── 21. ACCESSIBILITY ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
