:root {
  --bg: #f8fbff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #0e1730;
  --muted: #596377;
  --line: rgba(14, 23, 48, 0.1);
  --green: #43d17a;
  --green-soft: #e6fff0;
  --blue: #1f6fff;
  --blue-deep: #123f9c;
  --shadow: 0 28px 60px rgba(18, 63, 156, 0.14);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
  --header-pill-height: 52px;
  --header-top-gap: 22px;
  --header-total-offset: calc(var(--header-top-gap) + var(--header-pill-height) + 28px);
  --hero-bg-base: #eef2f9;
  --hero-bg-mid: #f5f8fd;
  --hero-grid-dot: rgba(24, 110, 72, 0.06);
  --brand-bg-green: #2eb86a;
  --brand-bg-blue: #1f6fff;
  --bg-flow-1: rgba(46, 184, 106, 0.42);
  --bg-flow-2: rgba(120, 214, 160, 0.36);
  /* Verde do ícone do logo Pacctum (lado direito do símbolo) */
  --brand-logo-green-light: #a4d441;
  --brand-logo-green-mid: #76bc21;
  --brand-logo-green-deep: #4e9d2d;
  /* Sombreados / profundidade (verde bem mais escuro que o degradê base) */
  --brand-logo-green-shade: #2d5c1c;
  --brand-logo-green-shadow: rgba(34, 72, 22, 0.55);
  --brand-logo-green-shadow-soft: rgba(26, 58, 16, 0.35);
  --brand-logo-navy: #001a41;
  /* Faísca nos CTAs — mesma cadência do carrossel (--spark-orbit-ms no JS também atualiza isto) */
  --cta-spark-orbit-ms: 6400ms;
}

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

html {
  scroll-behavior: smooth;
}

@keyframes hero-bg-gradient-flow {
  0% {
    background-position:
      0% 0%,
      0% 0%,
      8% 12%,
      0% 0%,
      0% 45%;
  }
  50% {
    background-position:
      0% 0%,
      0% 0%,
      92% 78%,
      0% 0%,
      100% 55%;
  }
  100% {
    background-position:
      0% 0%,
      0% 0%,
      20% 88%,
      0% 0%,
      45% 100%;
  }
}

@keyframes hero-bg-blob-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translate(8%, -6%) scale(1.08);
    opacity: 0.85;
  }
}

@keyframes hero-bg-blob-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate(-10%, 8%) scale(1.12);
    opacity: 0.75;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background-color: #b8e0c8;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      ellipse 85% 70% at 15% 85%,
      var(--bg-flow-1),
      transparent 58%
    ),
    radial-gradient(
      ellipse 75% 65% at 90% 12%,
      var(--bg-flow-2),
      transparent 55%
    ),
    radial-gradient(
      ellipse 72% 60% at 62% 58%,
      rgba(67, 209, 122, 0.26),
      transparent 58%
    ),
    radial-gradient(
      ellipse 60% 50% at 48% 42%,
      rgba(255, 255, 255, 0.12),
      transparent 62%
    ),
    linear-gradient(
      122deg,
      rgba(67, 209, 122, 0.72) 0%,
      rgba(34, 160, 95, 0.5) 22%,
      rgba(120, 214, 160, 0.42) 40%,
      rgba(67, 209, 122, 0.48) 55%,
      rgba(24, 130, 78, 0.52) 72%,
      rgba(90, 200, 135, 0.55) 88%,
      rgba(46, 184, 120, 0.65) 100%
    );
  background-size:
    100% 100%,
    100% 100%,
    120% 120%,
    100% 100%,
    400% 400%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  animation: hero-bg-gradient-flow 28s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  width: min(120vmin, 900px);
  height: min(120vmin, 900px);
  border-radius: 50%;
  left: -25%;
  bottom: -35%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(67, 209, 122, 0.35),
    transparent 62%
  );
  filter: blur(52px);
  animation: hero-bg-blob-a 22s ease-in-out infinite;
}

html::after {
  content: "";
  position: fixed;
  width: min(100vmin, 760px);
  height: min(100vmin, 760px);
  border-radius: 50%;
  right: -22%;
  top: -28%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 58% 55%,
      rgba(67, 209, 122, 0.28),
      transparent 62%
    ),
    radial-gradient(
      circle at 42% 45%,
      rgba(180, 235, 200, 0.32),
      transparent 58%
    );
  filter: blur(56px);
  animation: hero-bg-blob-b 26s ease-in-out infinite;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: var(--header-top-gap);
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 4vw, 28px);
  pointer-events: none;
}

.site-header__pill {
  pointer-events: auto;
  width: min(960px, 100%);
  min-height: var(--header-pill-height);
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2.4vw, 24px);
  padding: 8px 10px 8px clamp(18px, 2.4vw, 26px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow:
    0 14px 44px rgba(18, 63, 156, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Mobile menu: no desktop — mantém nav + CTA como filhos diretos do grid do pill */
.site-header__links {
  display: contents;
}

.site-header__menu-toggle {
  display: none;
  box-sizing: border-box;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(14, 23, 48, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.site-header__menu-toggle:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(14, 23, 48, 0.16);
}

.site-header__menu-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.site-header__menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.site-header__menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transform-origin: center;
  transition:
    transform 200ms cubic-bezier(0.45, 0, 0.2, 1),
    opacity 200ms ease;
}

.site-header--nav-open .site-header__menu-icon .site-header__menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--nav-open .site-header__menu-icon .site-header__menu-bar:nth-child(2) {
  opacity: 0;
}

.site-header--nav-open .site-header__menu-icon .site-header__menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__brand {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}

.site-header__brand img {
  display: block;
  height: 40px;
  width: auto;
}

.site-header__brand-note {
  margin-left: 4px;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 26px);
}

.site-header__nav a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 23, 48, 0.72);
  transition: color 160ms ease;
}

.site-header__nav a:hover {
  color: var(--text);
}

.site-header__nav a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-header__nav a.is-active,
.site-header__nav a[aria-current="page"] {
  color: var(--brand-logo-navy);
  box-shadow: 0 2px 0 0 rgba(46, 184, 106, 0.85);
}

.site-header__cta {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: clamp(0.65rem, 1.35vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, #2d86ff 52%, #25c46a 115%);
  box-shadow: 0 10px 26px rgba(31, 111, 255, 0.28);
  transition: transform 160ms ease, box-shadow 200ms ease, filter 200ms ease;
}

/* Brilho clean no hover: reflexo interno + halo suave (alinhado à faísca dourada) */
.site-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 220ms ease;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 249, 220, 0.14) 40%,
    transparent 65%
  );
}

.site-header__cta:hover::before {
  opacity: 1;
}

.site-header__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.03);
  box-shadow:
    0 12px 28px rgba(31, 111, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 20px rgba(255, 226, 140, 0.28);
}

.site-header__cta:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 3px;
}

.site-header__brand:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.hero-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 100vh;
  padding: var(--header-total-offset) 24px 32px;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 -140px 180px var(--brand-logo-green-shadow-soft),
    inset 0 0 min(92vw, 520px) rgba(45, 92, 28, 0.18),
    inset 0 12vh 160px -48px var(--brand-logo-green-shadow);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shell::before {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.2) 0 17%, transparent 17% 100%),
    linear-gradient(58deg, rgba(255, 255, 255, 0.15) 0 31%, transparent 31% 100%),
    linear-gradient(178deg, rgba(57, 108, 37, 0.24) 0 34%, transparent 34% 100%),
    linear-gradient(122deg, transparent 0 47%, rgba(255, 255, 255, 0.18) 47% 66%, transparent 66% 100%),
    linear-gradient(28deg, transparent 0 49%, rgba(50, 100, 32, 0.24) 49% 72%, transparent 72% 100%),
    linear-gradient(152deg, transparent 0 51%, rgba(255, 255, 255, 0.12) 51% 79%, transparent 79% 100%),
    linear-gradient(74deg, transparent 0 52%, rgba(65, 125, 42, 0.2) 52% 100%),
    linear-gradient(118deg, transparent 0 58%, rgba(255, 255, 255, 0.14) 58% 82%, transparent 82% 100%),
    linear-gradient(164deg, transparent 0 61%, rgba(42, 86, 28, 0.28) 61% 100%),
    linear-gradient(36deg, transparent 0 63%, rgba(255, 255, 255, 0.1) 63% 86%, transparent 86% 100%),
    radial-gradient(ellipse 120% 84% at 50% 108%, rgba(34, 72, 22, 0.42) 0%, transparent 58%),
    linear-gradient(
      145deg,
      #d6ef9d 0%,
      #b6da60 16%,
      #9dce4c 29%,
      #7dbc2a 46%,
      #6caf27 58%,
      #569f2e 73%,
      #417f29 100%
    );
}

.hero-shell::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.85px, transparent 0.85px);
  background-size: 28px 28px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 0%, transparent 72%);
}

.hero-shell > * {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(100%, var(--container));
  min-height: calc(100vh - var(--header-total-offset) - 40px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(56%, 640px);
}

.hero__copy {
  max-width: 520px;
  margin: 0;
}

.hero__eyebrow {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.125rem, 4.2vw, 3.125rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-shell .hero__title {
  color: var(--brand-logo-navy);
}

.hero__title-accent {
  display: block;
  margin-top: 8px;
  color: #17995a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.58rem, 2.85vw, 2.42rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-shell .hero__title-accent {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 18px rgba(0, 26, 65, 0.12);
}

.hero__description {
  max-width: 32rem;
  margin: 18px 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-shell .hero__description {
  color: rgba(0, 26, 65, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 180ms ease, box-shadow 200ms ease, background-color 180ms ease, filter 200ms ease;
}

.hero__button:hover {
  transform: translateY(-2px);
}

.hero__button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, #2d86ff 55%, #43d17a 100%);
  box-shadow: 0 18px 38px rgba(31, 111, 255, 0.22);
}

.hero__button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 220ms ease;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 249, 220, 0.13) 42%,
    transparent 68%
  );
}

.hero__button--primary:hover::before {
  opacity: 1;
}

.hero__button--primary:hover {
  filter: brightness(1.05) saturate(1.03);
  box-shadow:
    0 22px 44px rgba(31, 111, 255, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 0 26px rgba(255, 224, 130, 0.32);
}

.hero__button--secondary {
  color: var(--brand-logo-navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(14, 23, 48, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(14, 23, 48, 0.08);
}

.hero__button--secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(14, 23, 48, 0.18);
  box-shadow: 0 14px 32px rgba(14, 23, 48, 0.12);
}

/* Barra de confiança no hero */
.hero__trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(0, 26, 65, 0.78);
  line-height: 1.3;
}

.hero__trust-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--brand-logo-navy);
  opacity: 0.7;
}

/* Faísca amarela na borda dos CTAs (mesmo princípio do carrossel; texto acima do anel) */
.cta-spark {
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.cta-spark-spin {
  position: absolute;
  inset: -135%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 302deg,
    rgba(255, 214, 66, 0.22) 308deg,
    rgba(255, 228, 120, 0.85) 314deg,
    #fff3b0 318deg,
    rgba(255, 228, 120, 0.85) 322deg,
    rgba(229, 168, 35, 0.35) 328deg,
    transparent 334deg,
    transparent 360deg
  );
  animation: card-stack-spark-orbit var(--cta-spark-orbit-ms, 6400ms) linear infinite;
  will-change: transform;
}

.cta-spark-label {
  position: relative;
  z-index: 1;
}

.doc-tab-hidden .cta-spark-spin {
  animation-play-state: paused;
}

.hero__visual {
  --step-x: 34px;
  --step-y: 44px;
  --tab-h: 44px;
  position: absolute;
  right: clamp(8px, 2.4vw, 26px);
  top: 50%;
  width: min(560px, 46vw);
  min-height: 0;
  margin: 0;
  padding-top: calc(var(--step-y) * 2 + 12px);
  padding-right: calc(var(--step-x) * 2 + 12px);
  display: grid;
  align-items: center;
  overflow: visible;
  transform: translateY(-50%);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 209, 122, 0.22), transparent 70%);
  filter: blur(2px);
}

.hero__visual::after {
  content: "";
  position: absolute;
  left: 2%;
  top: 16%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b4d4;
  box-shadow: 0 0 0 16px rgba(16, 180, 212, 0.08);
}

.card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  isolation: isolate;
  /* Uma volta da faísca = troca automática da foto (ver script.js / animationiteration) */
  --spark-orbit-ms: 6400ms;
  /* Inclinação 3D leve (só na própria caixa; pai continua “flat” para não cruzar o meio das outras) */
  --card-3d-p: 1180px;
  --card-tilt-0-x: -2.35deg;
  --card-tilt-0-y: 0.58deg;
  --card-tilt-1-x: -1.4deg;
  --card-tilt-1-y: 0.42deg;
  --card-tilt-2-x: -0.68deg;
  --card-tilt-2-y: 0.28deg;
}

@keyframes card-stack-frame-orbit {
  0% {
    transform: rotate(0deg) scale(0.985);
    opacity: 0.76;
  }
  50% {
    transform: rotate(180deg) scale(1.015);
    opacity: 0.98;
  }
  100% {
    transform: rotate(360deg) scale(0.985);
    opacity: 0.76;
  }
}

@keyframes card-stack-frame-halo {
  0% {
    transform: rotate(360deg) scale(0.98);
    opacity: 0.34;
    filter: blur(16px);
  }
  50% {
    transform: rotate(180deg) scale(1.045);
    opacity: 0.62;
    filter: blur(20px);
  }
  100% {
    transform: rotate(0deg) scale(0.98);
    opacity: 0.34;
    filter: blur(16px);
  }
}

.card-stack::before,
.card-stack::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* Anel principal: uma energia viva correndo ao redor da pilha, sem encostar nas fotos */
.card-stack::before {
  inset: -18px;
  z-index: 0;
  border-radius: 30px;
  padding: 2px;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg 28deg,
      rgba(255, 235, 158, 0.98) 42deg,
      rgba(255, 218, 108, 0.42) 58deg,
      transparent 78deg 138deg,
      rgba(255, 255, 255, 0.78) 156deg,
      rgba(158, 246, 210, 0.46) 168deg,
      transparent 188deg 246deg,
      rgba(255, 226, 132, 0.84) 264deg,
      rgba(255, 243, 209, 0.4) 278deg,
      transparent 300deg 330deg,
      rgba(132, 236, 191, 0.52) 344deg,
      transparent 360deg
    );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 16px 38px rgba(7, 21, 56, 0.06),
    0 0 22px rgba(255, 225, 124, 0.16);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transform-origin: 50% 50%;
  animation: card-stack-frame-orbit 8.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

/* Halo cinematográfico: segunda camada difusa, em sentido contrário, para profundidade */
.card-stack::after {
  inset: -26px;
  z-index: 0;
  border-radius: 38px;
  padding: 10px;
  background:
    conic-gradient(
      from 180deg,
      transparent 0deg 18deg,
      rgba(255, 224, 128, 0.14) 38deg,
      rgba(255, 242, 204, 0.36) 56deg,
      transparent 84deg 172deg,
      rgba(142, 238, 193, 0.24) 198deg,
      rgba(255, 233, 153, 0.28) 216deg,
      transparent 248deg 324deg,
      rgba(255, 215, 96, 0.22) 344deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transform-origin: 50% 50%;
  animation: card-stack-frame-halo 11.5s linear infinite;
}

/*
 * Mesma rota de translate/scale de antes; perspective + rotate só dão volume à caixa.
 */
@keyframes card-stack-pass-under {
  0% {
    transform:
      translate3d(0, 0, 0)
      perspective(var(--card-3d-p))
      rotateX(var(--card-tilt-0-x))
      rotateY(var(--card-tilt-0-y))
      scale(1);
    box-shadow: 0 28px 60px rgba(18, 63, 156, 0.18);
  }
  34% {
    transform:
      translate3d(var(--step-x), calc(16% + 36px), 0)
      perspective(var(--card-3d-p))
      rotateX(0.85deg)
      rotateY(0.18deg)
      scale(0.93);
    box-shadow: 0 14px 32px rgba(18, 63, 156, 0.1);
  }
  72% {
    transform:
      translate3d(calc(var(--step-x) * 2.08), calc(-0.4 * var(--step-y)), 0)
      perspective(var(--card-3d-p))
      rotateX(var(--card-tilt-2-x))
      rotateY(calc(var(--card-tilt-2-y) + 0.06deg))
      scale(0.97);
    box-shadow: 0 12px 26px rgba(18, 63, 156, 0.085);
  }
  100% {
    transform:
      translate3d(calc(var(--step-x) * 2), calc(-2 * var(--step-y)), 0)
      perspective(var(--card-3d-p))
      rotateX(var(--card-tilt-2-x))
      rotateY(var(--card-tilt-2-y))
      scale(1);
    box-shadow: 0 12px 28px rgba(18, 63, 156, 0.09);
  }
}

.card-stack__card {
  all: unset;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(14, 23, 48, 0.08);
  box-shadow: 0 20px 50px rgba(18, 63, 156, 0.12);
  transform-origin: 50% 56%;
  transition:
    transform 960ms cubic-bezier(0.42, 0, 0.2, 1),
    box-shadow 960ms cubic-bezier(0.42, 0, 0.2, 1),
    z-index 0ms linear;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
}

.card-stack__card.card-stack__card--pass-under {
  z-index: 0 !important;
  pointer-events: none;
  cursor: default;
  animation: card-stack-pass-under 640ms cubic-bezier(0.45, 0, 0.2, 1) forwards;
  transition-property: opacity, filter;
}

/* Quem continua na pilha fica sempre acima do cartão que está passando por baixo */
.card-stack:has(.card-stack__card--pass-under) .card-stack__card[data-position="1"] {
  z-index: 5;
}

.card-stack:has(.card-stack__card--pass-under) .card-stack__card[data-position="2"] {
  z-index: 4;
}

.card-stack__card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  pointer-events: none;
  display: block;
  opacity: 0;
  filter: saturate(1) brightness(1);
  transition:
    opacity 780ms cubic-bezier(0.45, 0, 0.55, 1),
    filter 780ms cubic-bezier(0.45, 0, 0.55, 1);
}

.card-stack__label {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(8, 12, 30, 0.25), 0 4px 18px rgba(8, 12, 30, 0.35);
  background: transparent;
  pointer-events: none;
  opacity: 1;
  transition: opacity 650ms cubic-bezier(0.45, 0, 0.55, 1);
}

.card-stack__card[data-position="0"] {
  z-index: 3;
  transform:
    translate3d(0, 0, 0)
    perspective(var(--card-3d-p))
    rotateX(var(--card-tilt-0-x))
    rotateY(var(--card-tilt-0-y));
  box-shadow: 0 28px 60px rgba(18, 63, 156, 0.18);
}

.card-stack__card[data-position="1"] {
  z-index: 2;
  transform:
    translate3d(var(--step-x), calc(-1 * var(--step-y)), 0)
    perspective(var(--card-3d-p))
    rotateX(var(--card-tilt-1-x))
    rotateY(var(--card-tilt-1-y));
  box-shadow: 0 16px 40px rgba(18, 63, 156, 0.12);
}

.card-stack__card[data-position="2"] {
  z-index: 1;
  transform:
    translate3d(calc(var(--step-x) * 2), calc(-2 * var(--step-y)), 0)
    perspective(var(--card-3d-p))
    rotateX(var(--card-tilt-2-x))
    rotateY(var(--card-tilt-2-y));
  box-shadow: 0 12px 28px rgba(18, 63, 156, 0.09);
}

.card-stack__card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

/* Faísca amarela só na borda do cartão da frente (anel fino + gradiente cônico rotativo) */
@keyframes card-stack-spark-orbit {
  to {
    transform: rotate(360deg);
  }
}

.card-stack__spark {
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.card-stack__spark-spin {
  position: absolute;
  inset: -135%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 302deg,
    rgba(255, 214, 66, 0.22) 308deg,
    rgba(255, 228, 120, 0.85) 314deg,
    #fff3b0 318deg,
    rgba(255, 228, 120, 0.85) 322deg,
    rgba(229, 168, 35, 0.35) 328deg,
    transparent 334deg,
    transparent 360deg
  );
  will-change: transform;
}

.card-stack__card[data-position="0"] .card-stack__spark {
  opacity: 1;
  visibility: visible;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.card-stack__card[data-position="0"] .card-stack__spark-spin {
  animation: card-stack-spark-orbit var(--spark-orbit-ms, 6400ms) linear infinite;
}

.card-stack__card--pass-under .card-stack__spark {
  opacity: 0;
  visibility: hidden;
  transition: opacity 80ms ease;
}

.card-stack__card--pass-under .card-stack__spark-spin {
  animation-play-state: paused;
}

.card-stack--user-paused .card-stack__card[data-position="0"] .card-stack__spark-spin,
.card-stack--tab-hidden .card-stack__card[data-position="0"] .card-stack__spark-spin {
  animation-play-state: paused;
}

.card-stack__card[data-position="0"] img {
  opacity: 1;
  filter: saturate(1) brightness(1);
}

.card-stack__card[data-index="0"] img {
  object-position: center 34%;
}

.card-stack__card[data-index="1"] img {
  object-position: center 30%;
}

.card-stack__card[data-index="2"] img {
  object-position: center 26%;
}

.card-stack__card[data-position="1"] img {
  opacity: 0.92;
  filter: saturate(0.98) brightness(0.98);
}

.card-stack__card[data-position="2"] img {
  opacity: 0.82;
  filter: saturate(0.96) brightness(0.96);
}

.card-stack__card[data-position="1"] .card-stack__label,
.card-stack__card[data-position="2"] .card-stack__label {
  color: #ffffff;
}

/* ----- Seção confiança (pilares) — bloco premium, identidade Pacctum ----- */
.trust-strip {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.25rem, 7vw, 5.35rem) clamp(1.25rem, 4vw, 2rem) clamp(3.5rem, 7.5vw, 5.5rem);
  background: linear-gradient(180deg, #e6edf7 0%, #eef3fa 38%, #f2f6fb 100%);
  border-top: 1px solid rgba(14, 23, 48, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.trust-strip__ambient {
  position: absolute;
  inset: -25% -12% auto -12%;
  height: min(72%, 540px);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 58% 62% at 10% 32%, rgba(31, 111, 255, 0.1), transparent 56%),
    radial-gradient(ellipse 52% 58% at 92% 18%, rgba(46, 184, 106, 0.12), transparent 54%),
    radial-gradient(ellipse 48% 50% at 50% 100%, rgba(0, 26, 65, 0.045), transparent 55%);
}

.trust-strip__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(14, 23, 48, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 23, 48, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
}

.trust-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.trust-strip__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.trust-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.05rem;
  padding: 0.42rem 1.05rem 0.42rem 0.95rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(31, 111, 255, 0.11) 0%, rgba(46, 184, 106, 0.09) 100%);
  border: 1px solid rgba(31, 111, 255, 0.15);
  border-radius: 999px;
  box-shadow:
    0 2px 14px rgba(31, 111, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.trust-strip__eyebrow::after {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--brand-logo-green-mid) 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.trust-strip__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.42rem, 2.65vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.16;
  color: var(--brand-logo-navy);
  text-wrap: balance;
}

.trust-strip__title::after {
  content: "";
  display: block;
  width: min(5.75rem, 42vw);
  height: 3px;
  margin: 1.25rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0.92;
}

.trust-pillars {
  list-style: none;
  margin: clamp(2.4rem, 5.2vw, 3.35rem) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  max-width: 1180px;
}

.trust-pillar {
  position: relative;
  margin: 0;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  border-radius: 22px;
  background: linear-gradient(168deg, #ffffff 0%, #f7f9fe 48%, #eef3fb 100%);
  border: 1px solid rgba(14, 23, 48, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 1px 2px rgba(14, 23, 48, 0.06),
    0 10px 28px rgba(0, 26, 65, 0.08),
    0 4px 14px rgba(18, 63, 156, 0.07);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.trust-pillar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  max-width: 6.5rem;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, transparent, rgba(31, 111, 255, 0.35), rgba(46, 184, 106, 0.4), transparent);
  opacity: 0;
  transition: opacity 260ms ease;
}

.trust-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 111, 255, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 1px 3px rgba(14, 23, 48, 0.07),
    0 18px 42px rgba(0, 26, 65, 0.12),
    0 8px 22px rgba(31, 111, 255, 0.12);
}

.trust-pillar:hover::after {
  opacity: 1;
}

.trust-pillar__badge {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(148deg, rgba(31, 111, 255, 0.16) 0%, rgba(46, 184, 106, 0.18) 100%);
  border: 1px solid rgba(31, 111, 255, 0.26);
  box-shadow:
    0 2px 10px rgba(31, 111, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.trust-pillar__icon {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: var(--blue-deep);
}

.trust-pillar__label {
  display: block;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.38vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.45;
  color: var(--brand-logo-navy);
}

@media (max-width: 960px) {
  .trust-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ----- Seção “como a Pacctum pode ajudar” — serviços com tom acolhedor ----- */
.help-strip {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.35rem, 7.5vw, 5.6rem) clamp(1.25rem, 4vw, 2rem) clamp(3.6rem, 8vw, 5.75rem);
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(164, 212, 65, 0.08), transparent 52%),
    linear-gradient(185deg, #f5fcf8 0%, #f9fbfe 38%, #eef6ff 100%);
  border-top: 1px solid rgba(46, 184, 106, 0.1);
}

.help-strip__ambient {
  position: absolute;
  inset: -18% -15% auto -15%;
  height: min(68%, 520px);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 55% at 8% 35%, rgba(46, 184, 106, 0.11), transparent 58%),
    radial-gradient(ellipse 45% 50% at 94% 22%, rgba(31, 111, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 48% at 72% 88%, rgba(0, 26, 65, 0.035), transparent 52%);
}

.help-strip__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(
    circle at center,
    rgba(14, 23, 48, 0.045) 0.6px,
    transparent 0.7px
  );
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 92%);
}

.help-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.help-strip__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.help-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.05rem;
  padding: 0.42rem 1.05rem 0.42rem 0.95rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(46, 184, 106, 0.12) 0%, rgba(31, 111, 255, 0.1) 100%);
  border: 1px solid rgba(46, 184, 106, 0.2);
  border-radius: 999px;
  box-shadow:
    0 2px 14px rgba(46, 184, 106, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.help-strip__eyebrow::after {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-logo-green-mid) 0%, var(--blue) 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.help-strip__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.38rem, 2.75vw, 2.12rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.18;
  color: var(--brand-logo-navy);
  text-wrap: balance;
}

.help-strip__title::after {
  content: "";
  display: block;
  width: min(6rem, 44vw);
  height: 3px;
  margin: 1.2rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-logo-green-mid), var(--blue));
  opacity: 0.92;
}

.help-cards {
  list-style: none;
  margin: clamp(2.5rem, 5.5vw, 3.5rem) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.05rem, 2.2vw, 1.5rem);
  max-width: 1080px;
}

.help-card {
  position: relative;
  margin: 0;
  min-height: 100%;
  padding: clamp(1.45rem, 2.8vw, 1.85rem) clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.5rem, 2.9vw, 1.9rem);
  border-radius: 24px;
  background: linear-gradient(165deg, #ffffff 0%, #fbfdff 45%, #f5f9fc 100%);
  border: 1px solid rgba(14, 23, 48, 0.072);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 20px 50px rgba(0, 26, 65, 0.05),
    0 4px 16px rgba(18, 63, 156, 0.04);
  overflow: hidden;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.help-card__shine {
  position: absolute;
  inset: -40% -20%;
  background: conic-gradient(
    from 210deg at 70% 30%,
    rgba(31, 111, 255, 0.07),
    rgba(46, 184, 106, 0.09),
    rgba(164, 212, 65, 0.05),
    transparent 55%
  );
  opacity: 0.65;
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

.help-card__figure {
  position: absolute;
  top: 1.15rem;
  right: 1.1rem;
  width: 5.5rem;
  height: 4.5rem;
  pointer-events: none;
  opacity: 0.72;
  transition: opacity 280ms ease, transform 280ms ease;
}

.help-card--emprestimos .help-card__figure {
  background:
    linear-gradient(90deg, var(--blue), rgba(31, 111, 255, 0)) no-repeat 0 6px / 88% 3px,
    linear-gradient(90deg, rgba(31, 111, 255, 0.55), transparent) no-repeat 0 22px / 72% 3px,
    linear-gradient(90deg, var(--green), rgba(46, 184, 106, 0)) no-repeat 0 38px / 78% 3px,
    linear-gradient(90deg, rgba(46, 184, 106, 0.5), transparent) no-repeat 0 54px / 92% 3px;
}

.help-card--consorcio .help-card__figure {
  background:
    radial-gradient(circle at 58% 48%, transparent 24%, rgba(31, 111, 255, 0.14) 24.5%, rgba(31, 111, 255, 0.14) 30%, transparent 30.5%),
    radial-gradient(circle at 58% 48%, transparent 42%, rgba(46, 184, 106, 0.16) 42.5%, rgba(46, 184, 106, 0.16) 50%, transparent 50.5%),
    radial-gradient(circle at 58% 48%, transparent 62%, rgba(31, 111, 255, 0.08) 62.5%, rgba(31, 111, 255, 0.08) 70%, transparent 70.5%);
}

.help-card--financiamento .help-card__figure {
  background:
    linear-gradient(to top, rgba(31, 111, 255, 0.38), rgba(31, 111, 255, 0.06)) no-repeat 10% 100% / 15px 58%,
    linear-gradient(to top, rgba(46, 184, 106, 0.42), rgba(46, 184, 106, 0.08)) no-repeat 50% 100% / 15px 78%,
    linear-gradient(to top, rgba(18, 63, 156, 0.28), transparent) no-repeat calc(100% - 10px) 100% / 15px 52%;
}

.help-card--outras .help-card__figure {
  background:
    radial-gradient(circle, rgba(31, 111, 255, 0.55) 2px, transparent 2.5px) 8px 14px / 28px 28px,
    radial-gradient(circle, rgba(46, 184, 106, 0.55) 2px, transparent 2.5px) 46px 8px / 28px 28px,
    radial-gradient(circle, rgba(31, 111, 255, 0.35) 2px, transparent 2.5px) 38px 40px / 28px 28px,
    radial-gradient(circle, rgba(46, 184, 106, 0.4) 2px, transparent 2.5px) 72px 28px / 28px 28px,
    radial-gradient(circle, rgba(18, 63, 156, 0.25) 1.5px, transparent 2px) 58px 52px / 24px 24px;
}

.help-card__content {
  position: relative;
  z-index: 1;
  max-width: 26rem;
  padding-right: clamp(0px, 4vw, 3.5rem);
}

.help-card__title {
  margin: 0 0 0.75rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--brand-logo-navy);
}

.help-card__text {
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 0.98rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.help-card::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  bottom: 0;
  width: calc(100% - 2.5rem);
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, transparent, rgba(31, 111, 255, 0.2), rgba(46, 184, 106, 0.25), transparent);
  opacity: 0;
  transition: opacity 280ms ease;
}

.help-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 184, 106, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 60px rgba(0, 26, 65, 0.085),
    0 10px 28px rgba(46, 184, 106, 0.08);
}

.help-card:hover .help-card__shine {
  opacity: 0.9;
  transform: translate3d(4%, -2%, 0);
}

.help-card:hover .help-card__figure {
  opacity: 0.95;
  transform: scale(1.04);
}

.help-card:hover::after {
  opacity: 1;
}

@media (max-width: 700px) {
  .help-cards {
    grid-template-columns: 1fr;
  }
}

/* ----- Seção posicionamento — branco com aura em gradiente verde marca ----- */
@keyframes stance-blobs-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5%, -1.2%, 0) scale(1.02);
  }
}

.stance-strip {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.75rem, 9vw, 6.75rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 9.5vw, 7rem);
  background:
    radial-gradient(ellipse 85% 55% at 0% 0%, rgba(230, 255, 240, 0.95) 0%, transparent 52%),
    radial-gradient(ellipse 75% 50% at 100% 8%, rgba(67, 209, 122, 0.12), transparent 50%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(46, 184, 106, 0.1), transparent 55%),
    linear-gradient(175deg, #ffffff 0%, #fafefd 38%, #f2faf5 72%, #eef8f2 100%);
  border-top: 1px solid rgba(14, 23, 48, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Acento no topo: faixa curta centralizada (diferente das outras seções) */
.stance-strip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(10rem, 32vw);
  height: 3px;
  z-index: 5;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--brand-logo-green-mid), var(--green), var(--blue));
  opacity: 0.88;
}

.stance-strip__vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% 110%, rgba(46, 184, 106, 0.09), transparent 58%),
    radial-gradient(ellipse 45% 35% at 0% 100%, rgba(164, 212, 65, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 30% at 100% 0%, rgba(31, 111, 255, 0.05), transparent 48%);
}

.stance-strip__film {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0.85) 0%,
    transparent 32%,
    transparent 55%,
    rgba(31, 111, 255, 0.04) 100%
  );
}

.stance-strip__blobs {
  position: absolute;
  inset: -30% -22% -18% -22%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  animation: stance-blobs-drift 32s ease-in-out infinite;
  background:
    radial-gradient(ellipse 58% 50% at 8% 22%, rgba(164, 212, 65, 0.22), transparent 58%),
    radial-gradient(ellipse 54% 46% at 94% 18%, rgba(67, 209, 122, 0.16), transparent 56%),
    radial-gradient(ellipse 48% 52% at 48% 88%, rgba(46, 184, 106, 0.1), transparent 52%);
}

.stance-strip__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(
    circle at center,
    rgba(14, 23, 48, 0.035) 0.45px,
    transparent 0.55px
  );
  background-size: 20px 20px;
  mix-blend-mode: multiply;
}

.stance-strip__sweep {
  position: absolute;
  inset: auto -35% 8% -35%;
  height: min(48%, 340px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background: linear-gradient(
    98deg,
    transparent 0%,
    rgba(230, 255, 240, 0.65) 38%,
    rgba(67, 209, 122, 0.12) 52%,
    rgba(230, 255, 240, 0.5) 65%,
    transparent 100%
  );
  filter: blur(2px);
  transform: rotate(-5deg);
}

.stance-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.stance-strip__orbit {
  position: absolute;
  right: clamp(-6%, -2vw, 0%);
  top: clamp(6%, 10vw, 18%);
  width: min(48vw, 440px);
  max-width: 100%;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.stance-strip__orbit svg {
  display: block;
  width: 100%;
  height: auto;
}

.stance-strip__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.92fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.stance-strip__panel-wrap {
  position: relative;
}

@media (min-width: 821px) {
  .stance-strip__panel-wrap {
    padding-top: clamp(1.25rem, 3.5vw, 2.75rem);
  }

  .stance-strip__panel {
    margin-left: clamp(-1.25rem, -2.5vw, -0.25rem);
    transform: translateY(clamp(0.35rem, 1.2vw, 1.25rem));
  }
}

.stance-strip__head {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.35rem;
}

.stance-strip__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    var(--brand-logo-green-mid) 0%,
    var(--green) 38%,
    rgba(31, 111, 255, 0.85) 100%
  );
  box-shadow:
    0 0 20px rgba(46, 184, 106, 0.25),
    0 0 32px rgba(31, 111, 255, 0.12);
}

.stance-strip__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.02em;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.stance-strip__lead {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(0.8rem, 1.15vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  opacity: 0.88;
}

.stance-strip__word {
  display: block;
  font-size: clamp(2.35rem, 6.5vw, 4.15rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.058em;
}

.stance-strip__word--a {
  background: linear-gradient(
    118deg,
    var(--brand-logo-navy) 0%,
    #0d4a32 22%,
    var(--brand-logo-green-deep) 55%,
    var(--brand-logo-green-mid) 88%,
    var(--brand-logo-green-light) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stance-strip__word--b {
  margin-top: 0.06em;
  background: linear-gradient(
    118deg,
    var(--brand-logo-navy) 0%,
    #0e2d52 35%,
    var(--blue-deep) 62%,
    var(--blue) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stance-strip__mid {
  display: block;
  margin: 0.5rem 0 0.38rem;
  padding-left: 0.06em;
  font-size: clamp(1rem, 1.85vw, 1.22rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.stance-strip__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.stance-strip__meta-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-logo-green-mid), var(--green));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(46, 184, 106, 0.35);
}

.stance-strip__meta-dot--end {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(31, 111, 255, 0.25);
}

.stance-strip__meta-line {
  flex: 1;
  max-width: 11rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(46, 184, 106, 0.45),
    rgba(31, 111, 255, 0.35),
    rgba(164, 212, 65, 0.3),
    transparent
  );
  opacity: 0.95;
}

.stance-strip__panel {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.65rem) clamp(1.45rem, 3vw, 2.35rem) clamp(1.8rem, 3.5vw, 2.7rem)
    clamp(1.55rem, 2.8vw, 2.1rem);
  border-radius: clamp(20px, 2.2vw, 26px);
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    #fbfffc 40%,
    #f4fbf7 78%,
    #eef8f2 100%
  );
  border: 1px solid rgba(46, 184, 106, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 48px rgba(18, 63, 156, 0.07),
    0 4px 16px rgba(46, 184, 106, 0.06);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.stance-strip__panel::before {
  content: "\201C";
  position: absolute;
  top: 0.85rem;
  right: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  color: rgba(46, 184, 106, 0.08);
  pointer-events: none;
}

.stance-strip__panel-glow {
  position: absolute;
  inset: -25% -12% auto -12%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(67, 209, 122, 0.12) 0%,
    rgba(164, 212, 65, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.85;
}

.stance-strip__panel-edge {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  border-radius: inherit;
  border-top-left-radius: clamp(20px, 2.2vw, 26px);
  border-bottom-left-radius: clamp(20px, 2.2vw, 26px);
  background: linear-gradient(
    180deg,
    var(--brand-logo-green-light) 0%,
    var(--green) 38%,
    var(--blue) 100%
  );
  opacity: 0.92;
  pointer-events: none;
}

.stance-strip__body {
  position: relative;
  z-index: 1;
  display: flow-root;
  margin: 0;
  padding: 0.25rem 0 0 0.85rem;
  max-width: 40rem;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.014em;
  color: var(--text);
}

.stance-strip__body::first-letter {
  float: left;
  margin: 0.06em 0.14em 0 0;
  padding-top: 0.04em;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 3.05em;
  font-weight: 800;
  line-height: 0.72;
  color: var(--brand-bg-green);
  text-shadow: 0 2px 14px rgba(46, 184, 106, 0.25);
}

@supports not (backdrop-filter: blur(1px)) {
  .stance-strip__panel {
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
  }
}

@media (max-width: 820px) {
  .stance-strip__orbit {
    right: -5%;
    top: 4%;
    width: min(72vw, 320px);
    opacity: 0.35;
  }

  .stance-strip__layout {
    grid-template-columns: 1fr;
    gap: 1.85rem;
  }

  .stance-strip__panel-wrap {
    padding-top: 0;
  }

  .stance-strip__panel {
    margin-left: 0;
    transform: none;
  }

  .stance-strip__head {
    padding-left: 0;
    padding-top: 1.25rem;
    padding-bottom: 0;
  }

  .stance-strip__head::before {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 4px;
    background: linear-gradient(
      90deg,
      var(--brand-logo-green-mid) 0%,
      var(--green) 35%,
      rgba(31, 111, 255, 0.85) 100%
    );
    box-shadow: 0 0 18px rgba(46, 184, 106, 0.2);
  }

  .stance-strip__meta {
    margin-top: 1.25rem;
  }

  .stance-strip__word {
    font-size: clamp(1.95rem, 10vw, 2.85rem);
  }

  .stance-strip__mid {
    margin: 0.4rem 0 0.3rem;
  }
}

/* ----- Por que escolher — layout assimétrico (destaque + três faixas) ----- */
.why-strip {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem) clamp(3.75rem, 8.5vw, 6.25rem);
  background:
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(31, 111, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 100%, rgba(46, 184, 106, 0.07), transparent 52%),
    linear-gradient(168deg, #f5f8fc 0%, #eef3f9 42%, #fafcfe 100%);
  border-top: 1px solid rgba(14, 23, 48, 0.055);
}

.why-strip__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: radial-gradient(
    circle at center,
    rgba(14, 23, 48, 0.04) 0.5px,
    transparent 0.6px
  );
  background-size: 24px 24px;
}

.why-strip__glow {
  position: absolute;
  inset: -20% -15% auto -15%;
  height: min(55%, 420px);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 48% at 18% 35%, rgba(164, 212, 65, 0.14), transparent 58%),
    radial-gradient(ellipse 45% 42% at 88% 22%, rgba(31, 111, 255, 0.08), transparent 55%);
}

.why-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.why-strip__head {
  margin: 0 0 clamp(2.25rem, 4.5vw, 3.25rem);
  max-width: 38rem;
}

.why-strip__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.85vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.18;
  color: var(--brand-logo-navy);
  text-wrap: balance;
}

.why-strip__title::after {
  content: "";
  display: block;
  width: min(4.75rem, 28vw);
  height: 3px;
  margin-top: 1.05rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-logo-green-mid), var(--blue));
  opacity: 0.92;
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.15rem);
  min-height: clamp(20rem, 48vh, 30rem);
}

.why-card {
  position: relative;
  margin: 0;
  padding: clamp(1.35rem, 2.6vw, 1.75rem) clamp(1.25rem, 2.4vw, 1.65rem);
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(14, 23, 48, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 36px rgba(0, 26, 65, 0.06),
    0 2px 8px rgba(18, 63, 156, 0.04);
  overflow: hidden;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.why-card--featured {
  grid-column: 1;
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 3.2vw, 2.35rem) clamp(1.5rem, 2.8vw, 2rem);
  border-radius: clamp(22px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(168deg, #001a41 0%, #0a2542 42%, #0f3358 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 56px rgba(0, 26, 65, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.12) inset,
    0 -24px 48px rgba(46, 184, 106, 0.06) inset;
}

.why-card__featured-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.1rem, 2.4vw, 1.65rem);
  min-height: 0;
}

@media (min-width: 640px) {
  .why-card__featured-layout {
    flex-direction: row;
    align-items: center;
    gap: clamp(1.25rem, 2.2vw, 2rem);
  }
}

.why-card__featured-copy {
  flex: 0 1 auto;
}

@media (min-width: 640px) {
  .why-card__featured-copy {
    flex: 0 1 min(42%, 17.5rem);
    max-width: 17.5rem;
  }
}

.why-card--featured .why-card__figure {
  position: relative;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  border-radius: clamp(14px, 2vw, 18px);
  overflow: hidden;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.why-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 900;
  object-fit: cover;
  object-position: 52% center;
  filter: contrast(1.04) saturate(1.06);
}

@media (max-width: 639px) {
  .why-card--featured .why-card__figure {
    max-height: 13.5rem;
  }

  .why-card__img {
    max-height: 13.5rem;
    aspect-ratio: 16 / 9;
  }
}

.why-card--featured:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 32px 64px rgba(0, 26, 65, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.1) inset,
    0 -20px 52px rgba(46, 184, 106, 0.08) inset;
}

.why-card__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 88% 12%, rgba(164, 212, 65, 0.2), transparent 42%),
    radial-gradient(circle at 8% 88%, rgba(31, 111, 255, 0.18), transparent 45%);
}

.why-card--featured .why-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #f4fffb;
}

.why-card--featured .why-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.68;
  letter-spacing: 0.012em;
  color: rgba(240, 252, 248, 0.88);
}

.why-card__accent {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: min(62%, 4.25rem);
  min-height: 2.25rem;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--green) 100%);
  opacity: 0.92;
  transform: translateY(-50%);
}

.why-card:not(.why-card--featured) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(1.25rem + 10px);
}

.why-card:not(.why-card--featured) .why-card__title {
  margin: 0 0 0.55rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.14rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.28;
  color: var(--brand-logo-navy);
}

.why-card:not(.why-card--featured) .why-card__text {
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.88rem, 1.15vw, 0.96rem);
  line-height: 1.62;
  color: var(--muted);
}

.why-card:not(.why-card--featured):hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 18px 44px rgba(0, 26, 65, 0.09),
    0 6px 16px rgba(31, 111, 255, 0.07);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .why-card--featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
}

/* ----- Sobre a Pacctum — timeline editorial + etimologia em destaque ----- */
.about-strip {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.5rem, 8vw, 6.25rem) clamp(1.25rem, 4vw, 2rem) clamp(3.75rem, 8.5vw, 6.5rem);
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(31, 111, 255, 0.05), transparent 50%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(46, 184, 106, 0.06), transparent 52%),
    linear-gradient(178deg, #faf8f5 0%, #f5f7fb 48%, #f0f4fa 100%);
  border-top: 1px solid rgba(14, 23, 48, 0.06);
}

.about-strip__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image: radial-gradient(
    circle at center,
    rgba(14, 23, 48, 0.04) 0.5px,
    transparent 0.6px
  );
  background-size: 22px 22px;
}

.about-strip__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.5) 0%,
    transparent 35%,
    transparent 65%,
    rgba(255, 255, 255, 0.35) 100%
  );
}

.about-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.about-strip__head {
  margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
  max-width: 44rem;
  text-align: center;
}

.about-strip__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.75vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.036em;
  line-height: 1.2;
  color: var(--brand-logo-navy);
  text-wrap: balance;
}

.about-strip__title::after {
  content: "";
  display: block;
  width: min(5rem, 32vw);
  height: 2px;
  margin: 1.15rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-logo-green-mid), var(--blue), transparent);
  opacity: 0.85;
}

.about-story {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 46rem;
  position: relative;
}

.about-story::before {
  content: "";
  position: absolute;
  left: calc(3.75rem / 2 - 1px);
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(31, 111, 255, 0.35) 0%,
    rgba(46, 184, 106, 0.45) 45%,
    rgba(31, 111, 255, 0.25) 100%
  );
  opacity: 0.55;
}

.about-story__step {
  position: relative;
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  padding-bottom: clamp(1.4rem, 2.6vw, 1.9rem);
}

.about-story__step:last-child {
  padding-bottom: 0;
}

.about-story__node {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: 0.15rem;
  justify-self: center;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 0%, #f0f4fc 100%);
  border: 2px solid rgba(14, 23, 48, 0.1);
  box-shadow:
    0 0 0 4px rgba(250, 248, 245, 0.95),
    0 6px 18px rgba(0, 26, 65, 0.08);
}

.about-story__index {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue-deep);
}

.about-story__node--etym {
  background: linear-gradient(145deg, var(--blue) 0%, var(--green) 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 4px rgba(250, 248, 245, 0.95),
    0 8px 24px rgba(31, 111, 255, 0.22);
}

.about-story__node--etym .about-story__index {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-story__body {
  padding-top: 0.05rem;
}

.about-story__title {
  margin: 0 0 0.45rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.28;
  color: var(--brand-logo-navy);
}

.about-story__text {
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 0.98rem);
  line-height: 1.68;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.about-story__text strong {
  color: var(--text);
  font-weight: 600;
}

.about-story__step--etym .about-story__body--etym {
  padding: clamp(1.2rem, 2.4vw, 1.55rem) clamp(1.2rem, 2.2vw, 1.45rem);
  border-radius: 20px;
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 248, 255, 0.75) 100%);
  border: 1px solid rgba(14, 23, 48, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 40px rgba(0, 26, 65, 0.06);
}

.about-story__latin {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 3.25rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--brand-logo-navy);
  opacity: 0.92;
}

.about-story__step--etym .about-story__title {
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.about-strip__cta {
  margin-top: clamp(2.25rem, 4.5vw, 3rem);
  display: flex;
  justify-content: center;
  text-align: center;
}

.about-strip__cta-btn {
  min-width: min(100%, 240px);
}

@media (max-width: 720px) {
  .about-strip {
    padding: 2.35rem clamp(16px, 5vw, 22px) 2.85rem;
  }

  .about-story::before {
    left: calc(3.25rem / 2 - 1px);
  }

  .about-story__step {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 0.85rem;
    padding-bottom: 1.25rem;
  }

  .about-story__node {
    width: 2.5rem;
    height: 2.5rem;
    box-shadow:
      0 0 0 3px rgba(250, 248, 245, 0.95),
      0 4px 14px rgba(0, 26, 65, 0.07);
  }

  .about-story__index {
    font-size: 0.5625rem;
  }

  .about-strip__head {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .about-strip__title::after {
    margin-left: 0;
    margin-right: auto;
  }

  .about-story {
    max-width: none;
  }

  .about-strip__cta {
    width: 100%;
  }

  .about-strip__cta-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ----- Depoimentos — faixa clara + marquee infinito ----- */
@keyframes voice-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.voice-strip {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.5rem, 7.8vw, 5.85rem) 0 clamp(3.25rem, 7vw, 5.35rem);
  background:
    radial-gradient(ellipse 60% 48% at 8% 20%, rgba(31, 111, 255, 0.05), transparent 55%),
    radial-gradient(ellipse 55% 42% at 92% 75%, rgba(46, 184, 106, 0.05), transparent 52%),
    linear-gradient(178deg, #ffffff 0%, #fafbfd 45%, #f5f7fb 100%);
  border-top: 1px solid rgba(14, 23, 48, 0.06);
}

.voice-strip__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.65) 0%,
    transparent 38%,
    transparent 62%,
    rgba(255, 255, 255, 0.4) 100%
  );
}

.voice-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.voice-strip__head {
  margin: 0 auto clamp(1.85rem, 3.8vw, 2.65rem);
  max-width: 46rem;
  text-align: center;
}

.voice-strip__title {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.38rem, 2.65vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.2;
  color: var(--brand-logo-navy);
  text-wrap: balance;
}

.voice-strip__note {
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.84rem, 1.12vw, 0.94rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: rgba(14, 23, 48, 0.68);
}

.voice-strip__note strong {
  color: var(--brand-logo-navy);
  font-weight: 600;
}

.voice-marquee {
  position: relative;
  margin-left: calc(-1 * clamp(1.25rem, 4vw, 2rem));
  margin-right: calc(-1 * clamp(1.25rem, 4vw, 2rem));
  padding: 0.25rem 0 0.75rem;
}

.voice-marquee__mask {
  overflow: hidden;
  padding: 0.45rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.voice-marquee__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 1.15rem;
  animation: voice-marquee-scroll 52s linear infinite;
  will-change: transform;
}

.voice-marquee__track:hover,
.voice-marquee__track:focus-within {
  animation-play-state: paused;
}

.voice-marquee__list {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.voice-card {
  flex: 0 0 auto;
  width: min(300px, 82vw);
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(14, 23, 48, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 36px rgba(14, 23, 48, 0.06),
    0 2px 8px rgba(14, 23, 48, 0.04);
}

.voice-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.voice-card__avatar {
  display: grid;
  place-items: center;
  min-width: 2.85rem;
  height: 2.85rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-logo-navy);
  background: linear-gradient(145deg, #ffffff 0%, #e8f8ef 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.voice-card__city {
  margin: 0 0 0.6rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 23, 48, 0.45);
}

.voice-card__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.voice-card__quote p {
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.9rem, 1.15vw, 0.97rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: rgba(14, 23, 48, 0.82);
}

@media (max-width: 720px) {
  .voice-strip {
    padding: 2.5rem 0 2.35rem;
  }

  .voice-strip__head {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .voice-strip__title {
    font-size: clamp(1.2rem, 5.2vw, 1.52rem);
  }

  .voice-marquee {
    margin-left: calc(-1 * clamp(16px, 5vw, 22px));
    margin-right: calc(-1 * clamp(16px, 5vw, 22px));
  }

  .voice-card {
    width: min(280px, 88vw);
    padding: 1.15rem 1.1rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .voice-marquee__track {
    animation-duration: 64s;
  }
}

/* ----- Contato (âncora #contato) ----- */
.site-contact {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(ellipse 55% 80% at 100% 50%, rgba(31, 111, 255, 0.08), transparent 55%),
    linear-gradient(168deg, #001a41 0%, #0a2542 48%, #0f3358 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-contact__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, auto);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.site-contact__eyebrow {
  margin: 0 0 0.55rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-contact__title {
  margin: 0 0 0.75rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f2f7ff;
}

.site-contact__text {
  margin: 0;
  max-width: 36rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  color: rgba(216, 228, 248, 0.88);
}

.site-contact__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.site-contact__wa {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .site-contact__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-contact__actions {
    align-items: center;
  }

  .site-contact__wa {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

.site-contact__meta {
  margin: 0.35rem 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(216, 228, 248, 0.78);
}

.site-contact__meta a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.18em;
}

.site-contact__meta a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.75);
}

.site-contact__meta-sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

/* Informações de contato visíveis */
.site-contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.site-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(216, 228, 248, 0.85);
}

.site-contact__info-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(216, 228, 248, 0.65);
  margin-top: 2px;
}

.site-contact__info-item strong {
  display: block;
  color: #f2f7ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.site-contact__info-item a {
  color: rgba(216, 228, 248, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 0.15em;
  transition: text-decoration-color 160ms ease;
}

.site-contact__info-item a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* Divisor entre WhatsApp e formulário */
.site-contact__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
  font-size: 0.8125rem;
  color: rgba(216, 228, 248, 0.55);
}

.site-contact__divider::before,
.site-contact__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* Formulário de contato */
.site-contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.site-contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-contact__form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(216, 228, 248, 0.7);
}

.site-contact__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.site-contact__form-group input,
.site-contact__form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #f2f7ff;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.site-contact__form-group input::placeholder,
.site-contact__form-group textarea::placeholder {
  color: rgba(216, 228, 248, 0.35);
}

.site-contact__form-group input:focus,
.site-contact__form-group textarea:focus {
  border-color: rgba(67, 209, 122, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.site-contact__form-group textarea {
  resize: vertical;
  min-height: 72px;
}

.site-contact__submit {
  margin-top: 4px;
  align-self: flex-start;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f2f7ff;
  background: rgba(255, 255, 255, 0.1);
}

.site-contact__submit:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-contact__submit:disabled {
  cursor: wait;
  opacity: 0.78;
}

.site-contact__form-hint {
  margin: 0;
  max-width: 28rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(216, 228, 248, 0.55);
}

.site-contact__form-hint.is-success {
  color: rgba(196, 255, 214, 0.92);
}

.site-contact__form-hint.is-error {
  color: rgba(255, 208, 208, 0.95);
}

@media (max-width: 720px) {
  .site-contact__info {
    align-items: center;
  }

  .site-contact__info-item {
    justify-content: center;
    text-align: left;
  }

  .site-contact__submit {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }
}

/* CTA nos serviços */
.help-strip__cta-wrap {
  text-align: center;
  margin-top: 32px;
}

.help-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 23, 48, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(14, 23, 48, 0.06);
  transition: transform 160ms ease, box-shadow 180ms ease, background 160ms ease;
}

.help-strip__cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(14, 23, 48, 0.1);
}

/* ----- Rodapé global ----- */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(2.75rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(46, 184, 106, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(31, 111, 255, 0.1), transparent 52%),
    linear-gradient(188deg, #020d1f 0%, #001a41 38%, #0a2542 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--brand-logo-green-mid) 18%,
    var(--green) 42%,
    var(--blue) 72%,
    transparent 100%
  );
  opacity: 0.95;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.site-footer__col--brand {
  max-width: 22rem;
}

.site-footer__brand {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.65vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f2f7ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__brand:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__tagline {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.97rem);
  line-height: 1.55;
  color: rgba(200, 218, 248, 0.82);
}

.site-footer__title {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__list--nav {
  gap: 0.4rem;
}

.site-footer__link {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(232, 242, 255, 0.92);
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__link:hover {
  color: #ffffff;
}

.site-footer__link--multiline {
  line-height: 1.5;
}

.site-footer__item-text {
  max-width: 17rem;
}

.site-footer__item-muted {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(180, 200, 230, 0.65);
}

.site-footer__list--social .site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-footer__list--social .site-footer__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-logo-green-mid), var(--blue));
  opacity: 0.85;
}

.site-footer__bottom {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  padding-top: clamp(1.35rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__legal {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  color: rgba(180, 200, 230, 0.55);
}

.site-footer__wa-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue) 0%, #25c46a 100%);
  box-shadow: 0 10px 28px rgba(31, 111, 255, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.site-footer__wa-pill:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.site-footer__wa-pill:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----- FAQ — conversão com layout editorial + acordeão ----- */
.faq-strip {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.5rem, 7.5vw, 5.75rem) clamp(1.25rem, 4vw, 2rem) clamp(3.75rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(31, 111, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 48% at 100% 100%, rgba(46, 184, 106, 0.07), transparent 52%),
    linear-gradient(188deg, #eef4fc 0%, #f6f9fd 42%, #fafdff 100%);
  border-top: 1px solid rgba(14, 23, 48, 0.07);
}

.faq-strip__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image: radial-gradient(
    circle at center,
    rgba(14, 23, 48, 0.04) 0.55px,
    transparent 0.65px
  );
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
}

.faq-strip__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 23, 48, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 23, 48, 0.04) 1px, transparent 1px);
  background-size: 100% 11px, 11px 100%;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 0%, transparent 72%);
}

.faq-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.faq-strip__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.faq-strip__head {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  max-width: 26rem;
}

.faq-strip__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    var(--brand-logo-green-mid) 0%,
    var(--green) 40%,
    rgba(31, 111, 255, 0.9) 100%
  );
  box-shadow: 0 0 18px rgba(46, 184, 106, 0.2);
}

@media (min-width: 960px) {
  .faq-strip__head {
    position: sticky;
    top: calc(var(--header-total-offset, 120px) + 1rem);
  }
}

.faq-strip__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  opacity: 0.9;
}

.faq-strip__title {
  margin: 0 0 1.1rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.42rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.16;
  color: var(--brand-logo-navy);
  text-wrap: balance;
}

.faq-strip__lede {
  margin: 0 0 1.35rem;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: rgba(14, 23, 48, 0.72);
}

.faq-strip__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin: 0 0 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(14, 23, 48, 0.55);
}

.faq-strip__meta-count {
  font-weight: 600;
  color: var(--brand-logo-navy);
  letter-spacing: 0.02em;
}

.faq-strip__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-logo-green-mid), var(--blue));
  opacity: 0.75;
}

.faq-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--blue-deep);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid rgba(31, 111, 255, 0.35);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    gap 0.2s ease;
}

.faq-strip__cta:hover {
  color: var(--blue);
  border-bottom-color: rgba(31, 111, 255, 0.65);
  gap: 0.6rem;
}

.faq-strip__cta:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-strip__cta-arrow {
  font-size: 1.05em;
  transition: transform 0.2s ease;
}

.faq-strip__cta:hover .faq-strip__cta-arrow {
  transform: translateX(3px);
}

.faq-strip__panel {
  min-width: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  position: relative;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 23, 48, 0.08);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(31, 111, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.faq-item[open] {
  border-color: rgba(46, 184, 106, 0.28);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 40px rgba(14, 23, 48, 0.06);
  background: #ffffff;
}

.faq-item__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1.05rem 1.15rem 1.05rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--brand-logo-navy);
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary::marker {
  content: "";
}

.faq-item__summary:focus-visible {
  outline: none;
}

.faq-item:has(.faq-item__summary:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

.faq-item:has(.faq-item__summary:focus-visible) .faq-item__summary {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-item__index {
  font-family: "Inter", monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  color: rgba(46, 184, 106, 0.85);
  min-width: 1.65rem;
}

.faq-item__question {
  text-align: left;
}

.faq-item__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(46, 184, 106, 0.12) 0%, rgba(31, 111, 255, 0.1) 100%);
  border: 1px solid rgba(14, 23, 48, 0.06);
  position: relative;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1),
    background 0.22s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--brand-logo-navy);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq-item__icon::before {
  width: 11px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 11px;
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item[open] .faq-item__icon {
  background: linear-gradient(145deg, rgba(46, 184, 106, 0.2) 0%, rgba(31, 111, 255, 0.14) 100%);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-item[open] .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__answer-inner p {
  margin: 0;
  padding: 0 1.2rem 1.2rem 3.35rem;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.88rem, 1.05vw, 0.96rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.012em;
  color: rgba(14, 23, 48, 0.78);
}

.faq-item__answer-inner p strong {
  color: var(--brand-logo-navy);
  font-weight: 600;
}

.faq-item__answer-inner p em {
  font-style: italic;
  color: rgba(14, 23, 48, 0.82);
}

@media (max-width: 959px) {
  .faq-strip__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .faq-strip__head {
    max-width: none;
    padding-left: 1.1rem;
  }

  .faq-item__answer-inner p {
    padding-left: 1.15rem;
    padding-right: 1.1rem;
  }
}

@media (max-width: 520px) {
  .faq-item__summary {
    grid-template-columns: auto 1fr auto;
    gap: 0.55rem 0.65rem;
    padding: 0.95rem 0.85rem 0.95rem 0.95rem;
  }

  .faq-item__index {
    font-size: 0.625rem;
    min-width: 1.45rem;
  }

  .faq-item__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  html::after {
    animation: none !important;
  }

  .card-stack__card {
    transition-duration: 0.01ms;
    transition-delay: 0.01ms;
  }

  .card-stack__card.card-stack__card--pass-under {
    animation: none !important;
    transform: translate3d(calc(var(--step-x) * 2), calc(-2 * var(--step-y)), 0) !important;
  }

  .card-stack__card[data-position="0"] {
    transform: translate3d(0, 0, 0);
  }

  .card-stack__card[data-position="1"] {
    transform: translate3d(var(--step-x), calc(-1 * var(--step-y)), 0);
  }

  .card-stack__card[data-position="2"] {
    transform: translate3d(calc(var(--step-x) * 2), calc(-2 * var(--step-y)), 0);
  }

  .card-stack__card img,
  .card-stack__label {
    transition-duration: 0.01ms;
    transition-delay: 0.01ms;
  }

  .card-stack::before,
  .card-stack::after {
    animation: none !important;
  }

  .card-stack__spark,
  .card-stack__spark-spin {
    display: none;
  }

  .cta-spark,
  .cta-spark-spin {
    display: none !important;
  }

  .site-header__cta::before,
  .hero__button--primary::before {
    display: none;
  }

  .site-header__cta:hover {
    filter: brightness(1.03);
    box-shadow: 0 10px 26px rgba(31, 111, 255, 0.28);
  }

  .hero__button--primary:hover {
    filter: none;
    box-shadow: 0 18px 38px rgba(31, 111, 255, 0.22);
  }

  .site-header__links {
    transition: none !important;
  }

  .site-header--nav-open .site-header__links {
    transform: none !important;
  }

  .site-header__menu-icon .site-header__menu-bar {
    transition: none !important;
  }

  .trust-pillar {
    transition: none !important;
  }

  .trust-pillar:hover {
    transform: none !important;
  }

  .stance-strip__blobs {
    animation: none !important;
  }

  .help-card,
  .help-card:hover {
    transition-duration: 0.01ms !important;
    transition-delay: 0.01ms !important;
  }

  .help-card:hover {
    transform: none !important;
  }

  .help-card:hover .help-card__shine,
  .help-card:hover .help-card__figure {
    transform: none !important;
  }

  .why-card,
  .why-card:hover {
    transition-duration: 0.01ms !important;
    transition-delay: 0.01ms !important;
  }

  .why-card:hover,
  .why-card--featured:hover {
    transform: none !important;
  }

  .voice-marquee__track {
    animation: none !important;
    transform: translate3d(0, 0, 0);
  }

  .voice-marquee__list--clone {
    display: none !important;
  }

  .voice-marquee__mask {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .voice-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .voice-marquee__list {
    flex-wrap: nowrap;
  }

  .voice-card {
    scroll-snap-align: start;
  }

  .faq-item__answer {
    transition: none !important;
  }

  .faq-item__icon,
  .faq-item__icon::before,
  .faq-item__icon::after {
    transition: none !important;
  }

  .faq-strip__cta,
  .faq-strip__cta-arrow {
    transition: none !important;
  }

  .faq-strip__cta:hover .faq-strip__cta-arrow {
    transform: none;
  }
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1300;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 255, 0.92));
  box-shadow:
    0 24px 60px rgba(0, 26, 65, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-consent--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent--hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

body.mobile-menu-open .cookie-consent {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-consent__text {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(0, 26, 65, 0.84);
}

.cookie-consent__button {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, #2d86ff 55%, #43d17a 100%);
  box-shadow: 0 12px 28px rgba(31, 111, 255, 0.24);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cookie-consent__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 16px 30px rgba(31, 111, 255, 0.28);
}

.cookie-consent__button:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 20px;
  }

  .hero__content {
    order: 1;
    max-width: 100%;
  }

  .hero__visual {
    position: relative;
    order: 2;
    min-height: auto;
    justify-self: center;
    margin-left: 0;
    margin-right: 0;
    width: min(560px, 90vw);
    max-width: none;
    padding-top: calc(var(--step-y) * 2 + 10px);
    padding-right: calc(var(--step-x) * 2 + 10px);
    top: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-top-gap: 12px;
    --header-pill-height: auto;
    --header-total-offset: 88px;
    /* Pilha mais suave no telefone — mais fácil de encaixar no centro da tela */
    --hero-mobile-card-step-x: 11px;
    --hero-mobile-card-step-y: 16px;
  }

  .site-header {
    top: var(--header-top-gap);
    padding: 0 clamp(12px, 4vw, 20px);
  }

  .site-header__pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    padding: 8px 10px 8px 12px;
    border-radius: 16px;
    text-align: left;
  }

  .site-header__brand {
    justify-self: start;
    align-self: center;
    flex: 1;
    min-width: 0;
  }

  .site-header__brand img {
    height: 32px;
  }

  .site-header__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    position: fixed;
    z-index: 1001;
    left: clamp(12px, 4vw, 20px);
    right: clamp(12px, 4vw, 20px);
    top: calc(var(--header-top-gap) + 56px);
    max-height: min(calc(100vh - var(--header-top-gap) - 64px), 420px);
    overflow: auto;
    padding: 16px 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
      0 22px 48px rgba(18, 63, 156, 0.16),
      0 1px 0 rgba(255, 255, 255, 0.95) inset;
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(18px) saturate(1.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 220ms cubic-bezier(0.45, 0, 0.2, 1),
      visibility 220ms,
      transform 220ms cubic-bezier(0.45, 0, 0.2, 1);
  }

  .site-header--nav-open .site-header__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header__nav {
    width: 100%;
    min-width: 0;
  }

  .site-header__nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .site-header__nav a {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 13px 14px;
    text-align: center;
    border-radius: 12px;
    color: rgba(14, 23, 48, 0.88);
    background: rgba(14, 23, 48, 0.04);
    transition: background-color 160ms ease, color 160ms ease;
  }

  .site-header__nav a:hover {
    background: rgba(31, 111, 255, 0.1);
    color: var(--text);
  }

  .site-header__nav a:focus-visible {
    outline-offset: 2px;
  }

  .site-header__nav a.is-active,
  .site-header__nav a[aria-current="page"] {
    box-shadow: none;
    border-left: 3px solid var(--brand-logo-green-mid);
    padding-left: 11px;
    background: rgba(46, 184, 106, 0.1);
    color: var(--brand-logo-navy);
  }

  .site-header__links .site-header__cta {
    margin-top: 2px;
    justify-content: center;
    width: 100%;
    max-width: none;
    padding: 12px 16px;
    font-size: clamp(0.68rem, 3.2vw, 0.78rem);
    letter-spacing: 0.01em;
  }

  .site-header__menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .hero-shell {
    padding: var(--header-total-offset) clamp(16px, 5vw, 20px) 28px;
  }

  .hero {
    gap: 20px;
    min-height: calc(100vh - var(--header-total-offset) - 36px);
    padding-top: 8px;
  }

  .hero__content {
    text-align: left;
  }

  .hero__copy {
    margin-left: 0;
    margin-right: auto;
    max-width: 22rem;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  }

  .hero__title-accent {
    font-size: clamp(1.35rem, 5.1vw, 1.78rem);
    margin-top: 6px;
  }

  .hero__description {
    font-size: 0.875rem;
    line-height: 1.62;
    margin-top: 12px;
    margin-left: 0;
    margin-right: auto;
    max-width: 21rem;
  }

  .hero__button {
    width: 100%;
    max-width: 320px;
  }

  /* Bloco de fotos: centrado na coluna, respiro simétrico; micro-ajuste óptico na pilha (cartões “puxam” à direita) */
  .hero__visual {
    order: 3;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    margin-left: 0;
    margin-right: 0;
    padding: calc(var(--hero-mobile-card-step-y) * 1.1 + 8px) clamp(16px, 6vw, 24px) 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: visible;
  }

  .hero__visual::before,
  .hero__visual::after {
    display: none;
  }

  .card-stack {
    --step-x: var(--hero-mobile-card-step-x);
    --step-y: var(--hero-mobile-card-step-y);
    --tab-h: 32px;
    position: relative;
    width: min(292px, 100%);
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 4 / 3;
    transform: translateX(calc(-0.42 * var(--step-x)));
  }

  .card-stack::before {
    inset: -10px;
    border-radius: 22px;
  }

  .card-stack::after {
    inset: -14px;
    border-radius: 28px;
  }

  .card-stack__label {
    top: 10px;
    left: 12px;
    font-size: 0.72rem;
  }

  .trust-strip {
    padding: 2.5rem clamp(16px, 5vw, 22px) 3rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .trust-strip__ambient {
    max-height: 380px;
  }

  .trust-strip__head {
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .trust-strip__eyebrow {
    margin-bottom: 0.85rem;
  }

  .trust-strip__title {
    font-size: clamp(1.22rem, 5vw, 1.55rem);
  }

  .trust-strip__title::after {
    margin: 1rem 0 0;
  }

  .trust-pillars {
    grid-template-columns: 1fr;
    margin-top: 1.65rem;
    gap: 0.75rem;
  }

  .trust-pillar {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.15rem 1.2rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .trust-pillar:hover {
    transform: none;
  }

  .trust-pillar__badge {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 12px;
  }

  .trust-pillar__icon {
    width: 1.28rem;
    height: 1.28rem;
  }

  .trust-pillar__label {
    flex: 1;
    min-width: 0;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .help-strip {
    padding: 2.45rem clamp(16px, 5vw, 22px) 3.1rem;
  }

  .help-strip__head {
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .help-strip__eyebrow {
    margin-bottom: 0.85rem;
  }

  .help-strip__title {
    font-size: clamp(1.2rem, 5.2vw, 1.52rem);
  }

  .help-strip__title::after {
    margin: 1rem 0 0;
  }

  .help-cards {
    margin-top: 1.65rem;
    gap: 0.8rem;
  }

  .help-card {
    padding: 1.25rem 1.15rem 1.35rem;
    border-radius: var(--radius-md);
  }

  .help-card:hover {
    transform: none;
  }

  .help-card__figure {
    top: 0.95rem;
    right: 0.85rem;
    width: 4.75rem;
    height: 3.85rem;
    opacity: 0.55;
  }

  .help-card__content {
    padding-right: 4.25rem;
    max-width: none;
  }

  .help-card__title {
    font-size: 1.06rem;
    margin-bottom: 0.55rem;
  }

  .help-card__text {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .stance-strip {
    padding: 2.35rem clamp(16px, 5vw, 22px) 2.85rem;
  }

  .stance-strip__orbit {
    opacity: 0.22;
    width: min(78vw, 260px);
    top: 2%;
  }

  .stance-strip__lead {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .stance-strip__word {
    font-size: clamp(1.72rem, 9.5vw, 2.45rem);
  }

  .stance-strip__mid {
    font-size: 0.95rem;
  }

  .stance-strip__meta {
    margin-top: 1.05rem;
    gap: 0.5rem;
  }

  .stance-strip__meta-line {
    max-width: 7.5rem;
  }

  .stance-strip__panel {
    padding: 1.15rem 1rem 1.25rem 1.05rem;
    border-radius: var(--radius-md);
  }

  .stance-strip__panel::before {
    font-size: 3.25rem;
    top: 0.5rem;
    right: 0.65rem;
  }

  .stance-strip__body {
    padding: 0.15rem 0 0 0.45rem;
    font-size: 0.9rem;
    line-height: 1.68;
    max-width: none;
  }

  .stance-strip__body::first-letter {
    font-size: 2.65em;
    margin-right: 0.1em;
  }

  .why-strip {
    padding: 2.4rem clamp(16px, 5vw, 22px) 2.75rem;
  }

  .why-strip__head {
    margin-bottom: 1.5rem;
  }

  .why-strip__title {
    font-size: clamp(1.28rem, 5.4vw, 1.62rem);
  }

  .why-strip__title::after {
    margin-top: 0.85rem;
    width: min(4rem, 36vw);
  }

  .why-grid {
    gap: 0.7rem;
  }

  .why-card {
    padding: 1.15rem 1.1rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .why-card--featured {
    padding: 1.35rem 1.15rem 1.45rem;
  }

  .why-card:not(.why-card--featured) {
    padding-left: calc(1rem + 10px);
  }

  .why-card:not(.why-card--featured):hover {
    transform: none;
  }

  .why-card--featured:hover {
    transform: none;
  }

  /* Escurece o fundo quando o menu está aberto (fica abaixo do header fixo) */
  body.mobile-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(14, 23, 48, 0.36);
    pointer-events: auto;
  }

  .cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }

  .cookie-consent__button {
    width: 100%;
  }
}
