:root {
  --brand: #635bff;
  --brand-dark: #4b43e8;
  --brand-soft: #efeeff;
  --ink: #11172b;
  --ink-soft: #1a2340;
  --lime: #bdfd3e;
  --white: #ffffff;
  --surface: #f7f8fc;
  --surface-alt: #f0f1f7;
  /* Tints da paleta oficial (#635BFF e #BDFD3E) usados como fundo de seção:
     o branco puro em cinco seções seguidas deixava a página sem ritmo. */
  --tint-brand-soft: #f6f5ff;
  --tint-brand: #efedff;
  --tint-lime-soft: #fafee9;
  /*
   * Fluxo cromático da landing.
   * O fim de cada tópico repete exatamente o início do próximo para que o
   * fundo seja percebido como uma única superfície que muda ao longo da página.
   */
  --flow-hero-start: #f8f7ff;
  --flow-hero-end: #efedff;
  --flow-benefits-end: #e9e7ff;
  --flow-platform-end: #f0eeff;
  --flow-checkout-end: #f6f5ff;
  --flow-steps-end: #fbfee9;
  --flow-templates-end: #efedff;
  --flow-audience-end: #f5f3ff;
  --flow-faq-end: #eef0ff;
  --flow-cta-end: #f7f8fc;
  --flow-footer-end: #f0f1f7;
  --line: #e5e7ef;
  --muted: #596176;
  --muted-light: #9299aa;
  --success: #21b67a;
  /* Superfícies de vidro: o fundo opaco das regras-base continua sendo o
     fallback para navegadores sem backdrop-filter. */
  --glass-light: rgba(255, 255, 255, 0.7);
  --glass-light-strong: rgba(255, 255, 255, 0.82);
  --glass-control: rgba(255, 255, 255, 0.78);
  --glass-dark: rgba(13, 19, 39, 0.76);
  --glass-dark-strong: rgba(13, 19, 39, 0.9);
  --glass-border-light: rgba(255, 255, 255, 0.72);
  --glass-border-brand: rgba(99, 91, 255, 0.18);
  --glass-border-dark: rgba(255, 255, 255, 0.14);
  --glass-shadow: 0 20px 55px rgba(35, 28, 110, 0.12);
  --font-display: "Sora", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --container: 1600px;
  --page-gutter: 38px;
  --section-space: 112px;
  --heading-space: 56px;
  --header-height: 96px;
  --shadow-sm: 0 10px 30px rgba(17, 23, 43, 0.08);
  --shadow-md: 0 24px 70px rgba(17, 23, 43, 0.13);
  --shadow-brand: 0 16px 35px rgba(99, 91, 255, 0.28);
}

@property --edge-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: -90deg;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scrollbar-color: var(--brand) var(--surface-alt);
  scrollbar-gutter: stable;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--surface-alt);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #766fff, var(--brand-dark));
  border: 3px solid var(--surface-alt);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #817aff, var(--brand));
}

::-webkit-scrollbar-corner {
  background: var(--surface-alt);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--flow-hero-start);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/*
 * Cada destino reserva individualmente a altura real do header. Isso evita
 * que uma âncora aberta durante o carregamento perca sua referência quando o
 * breakpoint de notebook reduz a altura do cabeçalho.
 */
main > section[id]:not(#topo) {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.saas-icon-3d {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 9px 10px rgba(42, 35, 120, 0.2));
  pointer-events: none;
  transform: translateZ(0);
  transition: filter 220ms ease, transform 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.96);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 100;
  isolation: isolate;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* A superfície fica invisível sobre o início da hero. Em navegadores com
   animações por rolagem ela surge nos primeiros pixels; sem esse recurso, o
   fallback permanece sólido para manter contraste em navegadores antigos. */
.site-header::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 239, 0.9);
  box-shadow: 0 8px 30px rgba(17, 23, 43, 0.06);
  content: "";
  opacity: 1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 145px;
  height: auto;
}

.desktop-nav {
  position: absolute;
  left: 47%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  transform: translateX(-50%);
}

.desktop-nav a {
  position: relative;
  color: #424a60;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 14px;
}

.header-action {
  display: grid;
  height: 48px;
  min-height: 48px;
  padding: 0 14px;
  grid-template-columns: 19px minmax(0, 1fr) 16px;
  align-items: center;
  justify-content: initial;
  gap: 8px;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.header-action > span {
  min-width: 0;
  white-space: nowrap;
}

.header-action .header-action-icon,
.header-action .header-action-arrow {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.header-action .header-action-arrow {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.header-login {
  width: 138px;
  min-width: 138px;
  color: #4f576d;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 23, 43, 0.12);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.header-login:hover {
  color: var(--brand);
  background: #fff;
  border-color: rgba(99, 91, 255, 0.35);
}

.header-action:hover .header-action-arrow {
  transform: translateX(2px);
}

.header-cta {
  flex: 0 0 auto;
}

.header-cta.button-small {
  width: auto;
  min-width: 174px;
  min-height: 48px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: 0.86rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  gap: 10px;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 12px;
  box-shadow: var(--shadow-brand);
  font-size: 0.925rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button .button-icon-lead {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
  stroke-width: 1.5;
}

.button:hover {
  background: var(--brand-dark);
  box-shadow: 0 18px 42px rgba(99, 91, 255, 0.34);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(99, 91, 255, 0.22);
  font-size: 0.82rem;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: #d8dbe6;
  box-shadow: 0 10px 30px rgba(17, 23, 43, 0.06);
}

.button-secondary:hover {
  color: var(--brand);
  background: var(--white);
  border-color: rgba(99, 91, 255, 0.45);
  box-shadow: 0 14px 34px rgba(17, 23, 43, 0.09);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

/* O elemento details fornece abertura, fechamento, teclado e semântica nativos. */
.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu > summary {
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[open] .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  --flow-start: var(--flow-hero-start);
  --flow-end: var(--flow-hero-end);
  min-height: 790px;
  padding: calc(var(--header-height) + 34px) 0 22px;
  background:
    linear-gradient(rgba(99, 91, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 91, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 16% 23%, rgba(99, 91, 255, 0.14), transparent 30%),
    radial-gradient(circle at 84% 78%, rgba(189, 253, 62, 0.12), transparent 30%),
    linear-gradient(180deg, var(--flow-start) 0%, #f4f2ff 48%, var(--flow-end) 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--flow-end));
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 100px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.24), transparent 68%);
}

.hero-glow-two {
  top: 380px;
  left: -210px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(189, 253, 62, 0.26), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 4px 14px 4px 4px;
  color: var(--brand);
  background: rgba(99, 91, 255, 0.07);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(189, 253, 62, 0.35);
}

.eyebrow-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero h1,
.section-heading h2,
.platform-copy h2,
.split-heading h2,
.audience-copy h2,
.faq-aside h2,
.cta-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(3.2rem, 3.5vw, 3.65rem);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.headline-accent {
  position: relative;
  display: inline-block;
  color: var(--brand);
  white-space: nowrap;
}

.headline-accent::after {
  position: absolute;
  right: 1%;
  bottom: -9px;
  left: 2%;
  height: 10px;
  background: var(--lime);
  border-radius: 100% 7px 100% 8px;
  clip-path: polygon(0 58%, 100% 7%, 99% 69%, 1% 100%);
  content: "";
  opacity: 0.95;
}

.hero-lead {
  max-width: 510px;
  margin: 32px 0 28px;
  color: #596177;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-lead-accent {
  color: var(--brand);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button {
  min-height: 56px;
}

.hero-points {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #51596f;
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.hero-device-visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  max-width: 960px;
  margin: -24px 0 -14px;
  justify-self: end;
}

.hero-device-visual picture {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-device-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(17, 23, 43, 0.14));
}

.hero-device-halo {
  position: absolute;
  z-index: 0;
  inset: 10% 0 4% 7%;
  background:
    radial-gradient(circle at 72% 38%, rgba(99, 91, 255, 0.2), transparent 34%),
    radial-gradient(circle at 48% 76%, rgba(189, 253, 62, 0.15), transparent 32%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-device-rays {
  position: absolute;
  z-index: 4;
  top: 17%;
  right: 24px;
  width: 62px;
  height: 62px;
  pointer-events: none;
}

.hero-device-rays i {
  position: absolute;
  display: block;
  width: 5px;
  height: 29px;
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(189, 253, 62, 0.32);
  transform-origin: center bottom;
}

.hero-device-rays i:first-child {
  top: 22px;
  left: 1px;
  transform: rotate(-1deg);
}

.hero-device-rays i:nth-child(2) {
  top: 5px;
  left: 25px;
  transform: rotate(31deg);
}

.hero-device-rays i:nth-child(3) {
  top: 29px;
  left: 47px;
  height: 26px;
  transform: rotate(58deg);
}

/* Os três pixels são elementos independentes do mockup. Assim continuam
   nítidos, proporcionais e livres para flutuar em qualquer resolução. */
.hero-brand-pixels {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-brand-pixel {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: clamp(5px, 0.7vw, 9px);
  transform: rotate(8deg);
}

.hero-brand-pixel-lime {
  top: 25%;
  left: 3%;
  width: clamp(24px, 2.35vw, 36px);
  background: linear-gradient(145deg, #dbff82 0%, var(--lime) 50%, #91d815 100%);
  background-color: var(--lime);
  box-shadow:
    inset 3px 3px 6px rgba(255, 255, 255, 0.46),
    inset -3px -3px 7px rgba(89, 136, 0, 0.2),
    0 12px 28px rgba(189, 253, 62, 0.27);
}

.hero-brand-pixel-purple {
  top: 5%;
  right: 19%;
  width: clamp(19px, 1.75vw, 27px);
  background: linear-gradient(145deg, #8d87ff 0%, var(--brand) 55%, #433bd1 100%);
  background-color: var(--brand);
  box-shadow:
    inset 3px 3px 6px rgba(255, 255, 255, 0.3),
    inset -3px -3px 7px rgba(17, 23, 43, 0.23),
    0 11px 26px rgba(99, 91, 255, 0.3);
}

.hero-brand-pixel-navy {
  right: 3%;
  bottom: 20%;
  width: clamp(17px, 1.45vw, 23px);
  background: linear-gradient(145deg, #36405c 0%, var(--ink) 58%, #080c19 100%);
  background-color: var(--ink);
  box-shadow:
    inset 3px 3px 5px rgba(255, 255, 255, 0.18),
    inset -3px -3px 6px rgba(0, 0, 0, 0.24),
    0 10px 24px rgba(17, 23, 43, 0.24);
}

.value-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: 10px;
  padding: 0;
}

.value-strip::before {
  position: absolute;
  top: -150px;
  left: 7%;
  width: 360px;
  height: 260px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.12), transparent 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.value-strip-inner {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  min-height: 132px;
  padding: 22px 24px;
  overflow: hidden;
  gap: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(99, 91, 255, 0.1), transparent 31%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(99, 91, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(17, 23, 43, 0.07);
}

.value-strip-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(99, 91, 255, 0.13);
}

.value-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.value-strip-eyebrow i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 2px;
  box-sizing: content-box;
  transform: rotate(8deg);
}

.value-strip h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.42vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-wrap: balance;
  white-space: nowrap;
}

.value-strip-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.value-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

/* Versão curta da faixa usada somente na composição mobile da Hero. */

.value-item {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 76px;
  padding: 9px 8px;
  gap: 8px;
  background: rgba(247, 247, 253, 0.72);
  border: 1px solid rgba(99, 91, 255, 0.08);
  border-radius: 16px;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.value-item-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
}

.value-item-copy {
  display: grid;
  min-width: 0;
}

.value-item-copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(0.94rem, 0.9vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .value-item:hover {
    background: rgba(99, 91, 255, 0.055);
    border-color: rgba(99, 91, 255, 0.18);
    transform: translateY(-2px);
  }

  .value-item:hover .saas-icon-3d,
  .benefit-card:hover .saas-icon-3d,
  .platform-features > li:hover .saas-icon-3d,
  .steps-grid li:hover .saas-icon-3d,
  .audience-cards article:hover .saas-icon-3d {
    filter: drop-shadow(0 12px 13px rgba(42, 35, 120, 0.25));
    transform: translateY(-3px) rotate(-2deg) scale(1.045);
  }
}

@media (max-width: 1260px) {
  .value-item {
    align-items: flex-start;
    min-height: 92px;
    flex-direction: column;
  }
}

.section-heading {
  max-width: 750px;
  margin-bottom: var(--heading-space);
}

.section-heading.centered {
  max-width: 1060px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow-soft {
  margin-bottom: 17px;
  padding: 8px 12px;
  background: var(--brand-soft);
  border-radius: 100px;
  color: #4d45d4;
}

.section-heading h2,
.platform-copy h2,
.split-heading h2,
.audience-copy h2,
.faq-aside h2,
.cta-content h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.25rem);
}

.section-heading > p,
.split-heading > p,
.platform-copy > p,
.audience-copy > p,
.faq-aside > p,
.cta-content > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.section-heading.centered > p {
  max-width: 720px;
  margin: 19px auto 0;
}

.benefits {
  --flow-start: var(--flow-hero-end);
  --flow-end: var(--flow-benefits-end);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(189, 253, 62, 0.16), transparent 30%),
    radial-gradient(circle at 4% 46%, rgba(99, 91, 255, 0.1), transparent 28%),
    linear-gradient(rgba(99, 91, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 91, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--flow-start) 0%, #f4f2ff 48%, var(--flow-end) 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

.benefits .section-heading {
  margin-bottom: calc(var(--heading-space) - 4px);
}

.benefit-showcase {
  display: grid;
  grid-template-columns: minmax(390px, 0.84fr) minmax(0, 1.16fr);
  gap: 22px;
}

.benefit-story {
  position: relative;
  overflow: hidden;
  min-height: 652px;
  background: #efeeff;
  border: 1px solid rgba(99, 91, 255, 0.14);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(17, 23, 43, 0.1);
}

.benefit-story-media,
.benefit-story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.benefit-story-media img {
  object-fit: cover;
  object-position: 53% center;
}

.benefit-journey {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 17px;
}

.benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(150px, 1fr) minmax(128px, 0.72fr) 160px;
  align-items: center;
  overflow: hidden;
  min-width: 0;
  min-height: 206px;
  padding: 22px;
  gap: 17px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(17, 23, 43, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefit-card::before {
  position: absolute;
  top: -94px;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.11), transparent 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.benefit-customize::before {
  background: radial-gradient(circle, rgba(189, 253, 62, 0.2), transparent 68%);
}

.benefit-card:hover {
  border-color: rgba(99, 91, 255, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.benefit-index {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: stretch;
  align-content: center;
  justify-items: start;
  gap: 16px;
}

.benefit-index > span {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.78rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.benefit-customize .benefit-index > span {
  color: #4e7300;
}

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
}

.benefit-card-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.benefit-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.48rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
  white-space: nowrap;
}

.benefit-card-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.56;
  text-wrap: pretty;
}

.benefit-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #41495e;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}

.benefit-card li::before {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 2px;
  content: "";
  transform: rotate(10deg);
}

.benefit-customize li::before {
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--ink);
}

.benefit-preview {
  position: relative;
  z-index: 1;
  width: 160px;
  aspect-ratio: 33 / 28;
  justify-self: end;
  filter: drop-shadow(0 6px 13px rgba(17, 23, 43, 0.07));
}

.benefit-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.04) saturate(1.06);
}

.platform {
  --flow-start: var(--flow-benefits-end);
  --flow-end: var(--flow-platform-end);
  --flow-dark-edge: 88px;
  --flow-dark-exit: var(--flow-dark-edge);
  overflow: hidden;
  padding-block: calc(var(--section-space) - 16px);
  color: #fff;
  /* A entrada e a saída acontecem dentro do respiro da seção. O conteúdo
     permanece sobre o núcleo escuro e as bordas continuam o fundo vizinho. */
  background: linear-gradient(
    180deg,
    var(--flow-start) 0,
    #10162b var(--flow-dark-edge),
    #141a34 48%,
    #211e50 calc(100% - var(--flow-dark-exit)),
    var(--flow-end) 100%
  );
}

.platform::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 65%);
  mask-image: linear-gradient(90deg, #000, transparent 65%);
  pointer-events: none;
}

.platform-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.platform-orb-one {
  top: -240px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.28), transparent 68%);
}

.platform-orb-two {
  bottom: -250px;
  left: 5%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(189, 253, 62, 0.08), transparent 68%);
}

/* Colunas iguais: com 0.9fr/1.1fr a copy parava em 620px e o aparelho ficava
   centrado numa coluna muito larga, abrindo um vão morto no meio da seção. */
.platform-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 2.6vw, 48px);
}

.platform-copy {
  max-width: 780px;
}

.platform-copy h2 {
  color: #fff;
  font-size: clamp(2.6rem, 3.35vw, 3.5rem);
  line-height: 1.02;
}

.platform-title-line {
  display: block;
  white-space: nowrap;
}

.platform-title-accent {
  color: #c8c5ff;
}

.platform-copy > p {
  max-width: 620px;
  margin: 20px 0 29px;
  color: #b7bed0;
  font-size: 0.97rem;
  line-height: 1.7;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  column-gap: 28px;
  list-style: none;
}

.platform-features > li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 13px 0;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.platform-features > li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
}

.platform-feature-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.platform-features strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.platform-features small {
  color: #98a1b9;
  font-size: 0.79rem;
  line-height: 1.45;
  text-wrap: pretty;
}

/* Notebook e celular convivem na mesma composição, sem alternância. Cada arte
   é um PNG 4/3 com margem transparente própria: o notebook preenche quase
   todo o quadro, o celular ocupa cerca de um terço da largura do dele — daí
   as larguras diferentes dos dois palcos. */
.platform-devices {
  position: relative;
  isolation: isolate;
  width: min(880px, 100%);
  min-width: 0;
  margin-inline: auto;
}

.platform-devices-stage {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

/* Cada figure é a caixa do aparelho, não a do PNG. As artes trazem margem
   transparente muito diferente entre si — o notebook ocupa 93% da largura do
   arquivo e o celular só 31% —, então `.platform-device-frame` recorta a
   moldura e os percentuais abaixo saem dessa medição. Sem isso, encostar o
   celular à direita exigia estourar o figure para fora do container. */
.platform-device {
  position: absolute;
  margin: 0;
}

.platform-device-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* `height: auto` é obrigatório: sem ele o atributo height="900" do HTML
   prevalece e a arte estica. */
.platform-device-art {
  position: absolute;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.28));
  user-select: none;
  -webkit-user-drag: none;
}

.platform-device-laptop {
  top: 5%;
  left: 0;
  width: 75%;
  aspect-ratio: 1.3744;
}

.platform-device-laptop .platform-device-art {
  top: -5.42%;
  left: -3.76%;
  width: 107.53%;
}

/* A folga à direita existe para os pixels da marca orbitarem sem sair do
   container da seção. */
.platform-device-phone {
  right: 6%;
  bottom: 0;
  z-index: 2;
  width: 26.5%;
  aspect-ratio: 0.444;
}

.platform-device-phone .platform-device-art {
  top: -3.21%;
  left: -108.04%;
  width: 321.75%;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.42));
}

.brand-pixels {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.brand-pixel {
  position: absolute;
  display: block;
  border-radius: 7px;
  box-shadow: 0 10px 26px rgba(99, 91, 255, 0.22);
  transform: rotate(8deg);
}

.brand-pixel-lime {
  top: 9%;
  left: 80%;
  width: 36px;
  height: 36px;
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(189, 253, 62, 0.2);
  animation: brand-pixel-float 3.7s ease-in-out -0.8s infinite alternate;
}

.brand-pixel-lavender {
  top: 44%;
  left: -30%;
  width: 27px;
  height: 27px;
  background: #bcb8ff;
  animation: brand-pixel-float 4.2s ease-in-out -1.7s infinite alternate-reverse;
}

.brand-pixel-purple {
  top: 74%;
  left: 78%;
  width: 29px;
  height: 29px;
  background: var(--brand);
  animation: brand-pixel-float 3.9s ease-in-out -2.2s infinite alternate;
}

.brand-pixel-laptop-lime {
  top: 12%;
  left: -7%;
  width: 31px;
  height: 31px;
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(189, 253, 62, 0.2);
  animation: brand-pixel-float 4s ease-in-out -1.1s infinite alternate;
}

.brand-pixel-laptop-lavender {
  top: -8%;
  right: 16%;
  width: 24px;
  height: 24px;
  background: #bcb8ff;
  animation: brand-pixel-float 4.4s ease-in-out -2.4s infinite alternate-reverse;
}

.brand-pixel-laptop-purple {
  left: -6%;
  bottom: 6%;
  width: 28px;
  height: 28px;
  background: var(--brand);
  animation: brand-pixel-float 3.8s ease-in-out -1.8s infinite alternate;
}

@keyframes brand-pixel-float {
  from {
    translate: 0 -5px;
    rotate: -3deg;
  }

  to {
    translate: 5px 8px;
    rotate: 8deg;
  }
}

@media (max-width: 1239px) {
  .platform-devices {
    width: 100%;
  }
}

.checkout {
  --flow-start: var(--flow-platform-end);
  --flow-end: var(--flow-checkout-end);
  isolation: isolate;
  overflow: clip;
  background:
    linear-gradient(rgba(99, 91, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 91, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 14% 12%, rgba(189, 253, 62, 0.13), transparent 25%),
    linear-gradient(135deg, var(--flow-start) 0%, #f3f2ff 52%, var(--flow-end) 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.checkout-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.checkout-orb-one {
  top: -180px;
  right: -140px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.14), transparent 68%);
}

.checkout-orb-two {
  bottom: -190px;
  left: 20%;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(189, 253, 62, 0.1), transparent 68%);
}

.checkout-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(430px, 0.84fr);
  align-items: center;
  gap: clamp(38px, 4vw, 70px);
}

.checkout-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  max-width: 560px;
}

.checkout-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3vw, 3.35rem);
  letter-spacing: -0.052em;
  line-height: 1.06;
  text-wrap: balance;
}

.checkout-title-line {
  display: block;
}

.checkout-copy > p[data-checkout-lead] {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.checkout-flow {
  display: grid;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-flow > li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 66px;
  padding: 9px 0;
  gap: 14px;
  border-top: 1px solid rgba(99, 91, 255, 0.13);
}

.checkout-flow > li:last-child {
  border-bottom: 1px solid rgba(99, 91, 255, 0.13);
}

.checkout-flow > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--brand-dark);
  background: rgba(99, 91, 255, 0.09);
  border: 1px solid rgba(99, 91, 255, 0.14);
  border-radius: 13px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  place-items: center;
}

.checkout-flow > li > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.checkout-flow strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.91rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.checkout-flow small {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.checkout-provider {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  margin-top: 20px;
  padding: 14px 17px 14px 12px;
  gap: 13px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(99, 91, 255, 0.3), transparent 45%),
    #11172b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(17, 23, 43, 0.15);
}

.checkout-provider-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
}

.checkout-provider-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.24));
  pointer-events: none;
  user-select: none;
}

.checkout-provider > div {
  min-width: 0;
}

.checkout-provider > div > small {
  display: block;
  margin-bottom: 2px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.checkout-provider h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.94rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.checkout-methods {
  display: flex;
  flex-wrap: wrap;
  margin: 9px 0 0;
  padding: 0;
  gap: 6px;
  list-style: none;
}

.checkout-methods li {
  padding: 4px 9px;
  color: #d8dcf0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.checkout-note {
  margin: 13px 0 0;
  padding-left: 12px;
  color: #737b90;
  border-left: 3px solid var(--brand);
  font-size: 0.78rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.checkout-eyebrow {
  margin-bottom: 20px;
}

/*
 * Uma única arte mostra o mesmo checkout em desktop e celular. Ela substitui
 * o antigo desenho montado com dezenas de divs, que ficava pequeno demais e
 * parecia apenas um wireframe quando visto na página publicada.
 */
.checkout-showcase {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  /* 768px preserva dois pixels do arquivo por pixel CSS em displays 2x. */
  width: min(768px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-4px);
}

.checkout-showcase-art {
  position: relative;
  display: grid;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  place-items: center;
}

.checkout-showcase-art::after {
  content: none;
}

.checkout-showcase-art img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(30, 27, 86, 0.18));
  image-rendering: auto;
}

.checkout-showcase figcaption {
  margin: 0;
  padding: 15px 9px 0;
  color: #626b80;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 720px) {
  .checkout-showcase {
    padding: 0;
    transform: none;
  }

  .checkout-showcase-art {
    border-radius: 0;
  }

  .checkout-showcase figcaption {
    padding: 10px 7px 3px;
    font-size: 0.68rem;
  }
}

.checkout-visual {
  position: relative;
  display: grid;
  width: min(790px, 100%);
  min-width: 0;
  min-height: 570px;
  margin-inline: auto;
  padding: 40px 48px 58px 4px;
  place-items: center;
}

.checkout-demo-label {
  position: absolute;
  z-index: 5;
  top: 2px;
  left: 3%;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  gap: 6px;
  color: #4b43e8;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(45, 40, 125, 0.12);
  font-size: 0.61rem;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-demo-label i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.checkout-demo-label strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.64rem;
}

.checkout-browser {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 25px;
  box-shadow:
    0 34px 70px rgba(30, 27, 86, 0.18),
    0 8px 20px rgba(17, 23, 43, 0.08);
  transform: perspective(1300px) rotateY(-3deg) rotateX(0.8deg);
  transform-origin: center center;
}

.checkout-browser-bar {
  display: flex;
  align-items: center;
  height: 39px;
  padding: 0 15px;
  gap: 6px;
  background: #f6f7fb;
  border-bottom: 1px solid #e7e9f2;
}

.checkout-browser-bar > span {
  width: 7px;
  height: 7px;
  background: #ced2df;
  border-radius: 50%;
}

.checkout-browser-bar > i {
  width: 39%;
  height: 10px;
  margin-inline: auto;
  background: #e9eaf2;
  border-radius: 999px;
}

.checkout-screen {
  padding: 21px 22px 24px;
}

.checkout-screen-head,
.checkout-screen-brand-wrap,
.checkout-screen-brand,
.checkout-screen-progress,
.checkout-payment-option,
.checkout-product-line,
.checkout-phone-summary,
.checkout-phone-method {
  display: flex;
  align-items: center;
}

.checkout-screen-head {
  justify-content: space-between;
}

.checkout-screen-brand-wrap {
  gap: 8px;
}

.checkout-screen-store {
  color: #202840;
  font-family: var(--font-display);
  font-size: 0.61rem;
  letter-spacing: -0.02em;
}

.checkout-screen-brand {
  gap: 3px;
}

.checkout-screen-brand i {
  display: block;
  width: 11px;
  height: 11px;
  background: var(--brand);
  border-radius: 3px;
  transform: rotate(5deg);
}

.checkout-screen-brand i:nth-child(2) {
  width: 9px;
  height: 9px;
  background: var(--lime);
}

.checkout-screen-brand i:nth-child(3) {
  width: 7px;
  height: 7px;
  background: #bcb8ff;
}

.checkout-screen-secure {
  color: #637087;
  font-size: 0.58rem;
  font-weight: 700;
}

.checkout-screen-progress {
  position: relative;
  justify-content: space-between;
  margin: 19px 0 20px;
  color: #979eaf;
  font-size: 0.56rem;
  font-weight: 700;
}

.checkout-screen-progress::before {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -7px;
  left: 8%;
  height: 2px;
  background: #e5e7ef;
  content: "";
}

.checkout-screen-progress span {
  position: relative;
  padding-bottom: 7px;
}

.checkout-screen-progress .is-complete,
.checkout-screen-progress .is-active {
  color: var(--brand-dark);
}

.checkout-screen-progress .is-active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 999px;
  content: "";
}

.checkout-screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.92fr);
  gap: 14px;
}

.checkout-payment-panel,
.checkout-order-panel {
  min-width: 0;
  padding: 15px;
  background: #fafaff;
  border: 1px solid #e8e8f3;
  border-radius: 16px;
}

.checkout-ui-label {
  display: block;
  margin-bottom: 11px;
  color: #1c2338;
  font-size: 0.65rem;
  font-weight: 800;
}

.checkout-payment-option {
  min-height: 48px;
  padding: 8px 9px;
  gap: 9px;
  background: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 11px;
}

.checkout-payment-option + .checkout-payment-option {
  margin-top: 7px;
}

.checkout-payment-option.is-selected {
  background: #f2f1ff;
  border-color: rgba(99, 91, 255, 0.55);
  box-shadow: 0 5px 14px rgba(99, 91, 255, 0.09);
}

.checkout-payment-option > i,
.checkout-phone-method > i {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  background: #ecebff;
  border-radius: 8px;
}

.checkout-pix-symbol::before,
.checkout-pix-symbol::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--brand);
  border-radius: 3px;
  content: "";
  transform: rotate(45deg);
}

.checkout-pix-symbol::after {
  top: 11px;
  left: 11px;
  width: 5px;
  height: 5px;
  background: var(--lime);
  border: 0;
}

.checkout-card-symbol::before,
.checkout-boleto-symbol::before {
  position: absolute;
  top: 8px;
  right: 6px;
  bottom: 8px;
  left: 6px;
  border: 2px solid var(--brand);
  border-radius: 3px;
  content: "";
}

.checkout-card-symbol::after {
  position: absolute;
  top: 12px;
  right: 6px;
  left: 6px;
  height: 2px;
  background: var(--brand);
  content: "";
}

.checkout-boleto-symbol::before {
  background: repeating-linear-gradient(90deg, var(--brand) 0 1px, transparent 1px 3px);
  border: 0;
  border-radius: 0;
}

.checkout-payment-option > span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.checkout-payment-option strong,
.checkout-phone-method strong,
.checkout-product-line strong,
.checkout-phone-summary strong {
  color: #1b2237;
  font-size: 0.61rem;
  line-height: 1.3;
}

.checkout-payment-option small,
.checkout-product-line small,
.checkout-phone-summary small {
  color: #8a91a4;
  font-size: 0.49rem;
  line-height: 1.3;
}

.checkout-payment-option > b,
.checkout-phone-method > b {
  display: block;
  width: 11px;
  height: 11px;
  margin-left: auto;
  border: 2px solid #cdd1dd;
  border-radius: 50%;
}

.checkout-payment-option.is-selected > b,
.checkout-phone-method.is-selected > b {
  background: var(--brand);
  border: 3px solid #dddafe;
}

.checkout-product-line {
  padding-bottom: 13px;
  gap: 9px;
  border-bottom: 1px solid #e5e7ef;
}

.checkout-product-line > i,
.checkout-phone-summary > i {
  display: block;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 64% 35%, var(--lime) 0 12%, transparent 13%),
    linear-gradient(145deg, #dcd9ff, #7a72ff);
  border-radius: 10px;
}

.checkout-product-line > span,
.checkout-phone-summary > span {
  display: grid;
  min-width: 0;
}

.checkout-product-line > b {
  width: 35px;
  height: 8px;
  margin-left: auto;
  background: #e8e9f0;
  border-radius: 999px;
}

.checkout-order-panel dl {
  display: grid;
  margin: 11px 0 13px;
  gap: 7px;
}

.checkout-order-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.checkout-order-panel dt,
.checkout-order-panel dd {
  margin: 0;
  color: #81889a;
  font-size: 0.52rem;
}

.checkout-order-panel dd {
  color: #3d4558;
  font-weight: 700;
}

.checkout-order-panel .checkout-total {
  margin-top: 3px;
  padding-top: 9px;
  border-top: 1px solid #e5e7ef;
}

.checkout-order-panel .checkout-total dt,
.checkout-order-panel .checkout-total dd {
  color: #171e32;
  font-size: 0.63rem;
  font-weight: 800;
}

.checkout-confirm-button,
.checkout-phone-button {
  display: grid;
  min-height: 34px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), #a9f51d);
  border-radius: 9px;
  box-shadow: 0 8px 16px rgba(189, 253, 62, 0.22);
  font-size: 0.56rem;
  font-weight: 800;
  place-items: center;
}

.checkout-phone {
  position: absolute;
  z-index: 3;
  right: 7px;
  bottom: 33px;
  width: 31%;
  min-width: 170px;
  padding: 25px 12px 14px;
  overflow: hidden;
  background: #fff;
  border: 7px solid #11131b;
  border-radius: 31px;
  box-shadow: 0 28px 48px rgba(17, 23, 43, 0.24);
  transform: rotate(2deg);
}

.checkout-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 49px;
  height: 11px;
  background: #11131b;
  border-radius: 999px;
  transform: translateX(-50%);
}

.checkout-phone-title {
  display: block;
  margin-bottom: 11px;
  color: #151b2e;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
}

.checkout-phone-summary {
  padding: 9px;
  gap: 7px;
  background: #f7f7fc;
  border-radius: 10px;
}

.checkout-phone-summary > i {
  width: 31px;
  height: 31px;
  border-radius: 8px;
}

.checkout-phone-summary > b {
  margin-left: auto;
  color: #1a2135;
  font-size: 0.52rem;
}

.checkout-phone-method {
  min-height: 39px;
  margin-top: 8px;
  padding: 6px 7px;
  gap: 7px;
  border: 1px solid #e5e7ef;
  border-radius: 9px;
}

.checkout-phone-method.is-selected {
  background: #f1f0ff;
  border-color: rgba(99, 91, 255, 0.45);
}

.checkout-phone-method > i {
  width: 24px;
  height: 24px;
}

.checkout-phone-button {
  min-height: 32px;
  margin-top: 10px;
}

.checkout-float-chip {
  position: absolute;
  z-index: 4;
  padding: 8px 11px;
  color: #343c52;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(99, 91, 255, 0.13);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(31, 28, 88, 0.13);
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-float-status {
  top: 20px;
  right: 14%;
}

.checkout-float-status::before,
.checkout-float-security::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.checkout-float-security {
  bottom: 24px;
  left: 7%;
}

.checkout-float-security::before {
  background: var(--brand);
}

.checkout-brand-pixels {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.checkout-brand-pixels i {
  position: absolute;
  display: block;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(99, 91, 255, 0.16);
  animation: brand-pixel-float 4s ease-in-out infinite alternate;
}

.checkout-brand-pixels i:nth-child(1) {
  top: 10%;
  left: 3%;
  width: 30px;
  height: 30px;
  background: var(--brand);
}

.checkout-brand-pixels i:nth-child(2) {
  top: 24%;
  right: 1%;
  width: 22px;
  height: 22px;
  background: var(--lime);
  animation-delay: -1.2s;
}

.checkout-brand-pixels i:nth-child(3) {
  bottom: 8%;
  left: 22%;
  width: 20px;
  height: 20px;
  background: #bcb8ff;
  animation-delay: -2.4s;
}

/* A única seção que puxa o verde-lima como fundo: quebra a sequência de
   lavandas sem brigar com o roxo das vizinhas. */
/* Integrações ------------------------------------------------------------- */
.integrations {
  --flow-start: var(--flow-checkout-end);
  --flow-end: var(--flow-steps-end);
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 84% 20%, rgba(99, 91, 255, 0.12), transparent 32%),
    radial-gradient(circle at 8% 86%, rgba(189, 253, 62, 0.15), transparent 30%),
    linear-gradient(135deg, var(--flow-start) 0%, #fbfbff 54%, var(--flow-end) 100%);
}

.integrations-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.integrations-orb-one {
  top: -180px;
  right: -130px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.13), transparent 68%);
}

.integrations-orb-two {
  bottom: -200px;
  left: 25%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(189, 253, 62, 0.15), transparent 68%);
}

.integrations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 5vw, 82px);
}

.integrations-copy {
  min-width: 0;
  max-width: 650px;
}

.integrations-eyebrow {
  margin-bottom: 20px;
}

.integrations-eyebrow .eyebrow-icon {
  color: var(--brand-dark);
  background: rgba(99, 91, 255, 0.1);
}

.integrations-copy h2 {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.5vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
  text-wrap: balance;
}

.integrations-title-line {
  display: block;
}

.integrations-title-accent {
  color: var(--brand);
}

.integrations-copy > p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.integrations-benefits {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.integrations-benefits li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  padding: 13px 15px;
  column-gap: 12px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(99, 91, 255, 0.13);
  border-radius: 14px;
}

.integrations-benefits li > span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--brand-dark);
  background: rgba(99, 91, 255, 0.1);
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  place-items: center;
}

.integrations-benefits li > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.integrations-benefits li strong,
.integrations-benefits li small {
  display: block;
  min-width: 0;
}

.integrations-benefits li strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.integrations-benefits li small {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.integrations-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.integration-card {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 276px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 23px;
  box-shadow: 0 22px 55px rgba(45, 40, 125, 0.11);
}

.integration-card::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 4px;
  background: var(--brand);
  border-radius: 0 0 8px 8px;
  content: "";
}

.integration-card-ml::before {
  background: #ffe600;
}

.integration-card-amazon::before {
  background: #ff9900;
}

.integration-logo-frame {
  display: grid;
  min-height: 120px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e7e8f2;
  border-radius: 17px;
  place-items: center;
}

.integration-logo-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.integration-card-ml .integration-logo-frame img {
  max-width: 236px;
}

.integration-card-amazon .integration-logo-frame img {
  max-width: 220px;
}

.integration-card-copy {
  display: grid;
  margin-top: 19px;
  gap: 3px;
}

.integration-card-copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.integration-card-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.integration-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  padding: 6px 9px;
  color: #5a4f13;
  background: #fff8d9;
  border: 1px solid #eee0a3;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.integration-status i {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  background: #c79b00;
  border-radius: 50%;
}

.integrations-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #737b90;
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: right;
}

.steps {
  --flow-start: var(--flow-checkout-end);
  --flow-end: var(--flow-steps-end);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(189, 253, 62, 0.26), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(99, 91, 255, 0.09), transparent 32%),
    linear-gradient(180deg, var(--flow-start) 0%, #fafbe9 58%, var(--flow-end) 100%);
}

.split-heading {
  display: block;
  max-width: 800px;
  margin-bottom: calc(var(--heading-space) + 4px);
}

.split-heading > p {
  max-width: 660px;
  margin: 17px 0 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps-grid li {
  position: relative;
  min-width: 0;
  padding: 31px 24px 26px;
  background: rgba(255, 255, 255, 0.66);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms ease;
}

.steps-grid li:hover {
  background: #fff;
}

.steps-grid li + li {
  border-left: 1px solid var(--line);
}

.steps-grid li:first-child {
  border-left: 1px solid var(--line);
  border-radius: 16px 0 0 16px;
}

.steps-grid li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 16px 16px 0;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 19px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.step-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  place-items: center;
}

.steps-grid h3 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.templates {
  --flow-start: var(--flow-steps-end);
  --flow-end: var(--flow-templates-end);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(99, 91, 255, 0.12), transparent 32%),
    linear-gradient(180deg, var(--flow-start) 0%, #f5f3f0 22%, #f2efff 58%, var(--flow-end) 100%);
}

/* O título da galeria deve formar uma linha em monitores largos; o limite
   maior vale somente para este tópico e não alonga os textos de leitura. */
.templates .section-heading.centered {
  max-width: 1200px;
}

.templates::before {
  position: absolute;
  top: -100px;
  left: -180px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.09), transparent 68%);
  border-radius: 50%;
  content: "";
}

.template-gallery {
  position: relative;
}



.template-card {
  color: inherit;
  cursor: pointer;
  font: inherit;
}



.template-comparison {
  position: relative;
}

.template-comparison[hidden],
.template-detail[hidden] {
  display: none;
}

.template-comparison-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 24px;
}

.template-comparison-heading > div > span,
.template-comparison-copy > span {
  color: var(--brand-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-comparison-heading h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.template-comparison-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: right;
}

.template-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
}

.template-comparison-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.template-comparison-card-official {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  align-items: center;
  padding: clamp(9px, 1.5vw, 16px);
}

.template-comparison-card-official .template-comparison-copy {
  align-content: center;
  padding: clamp(18px, 3vw, 34px);
}

.template-comparison-card {
  display: grid;
  min-width: 0;
  padding: 9px 9px 15px;
  color: inherit;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(99, 91, 255, 0.15);
  border-radius: 21px;
  box-shadow: 0 15px 42px rgba(29, 28, 74, 0.09);
}

.template-comparison-card:nth-child(1) {
  --cv-item-delay: 0ms;
}

.template-comparison-card:nth-child(2) {
  --cv-item-delay: 140ms;
}

.template-comparison-card:nth-child(3) {
  --cv-item-delay: 280ms;
}

.template-comparison-stage {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: clamp(16px, 2vw, 28px) clamp(34px, 3.2vw, 54px) clamp(16px, 2vw, 28px) clamp(16px, 2vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(189, 253, 62, 0.2), transparent 26%),
    linear-gradient(145deg, #eeefff, #fafaff 55%, #f0f5e9);
  border-radius: 14px;
}

.template-comparison-desktop {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 23, 43, 0.14);
  border-radius: 10px;
  box-shadow: 0 20px 42px rgba(29, 28, 74, 0.16);
}

.template-comparison-desktop > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top;
}

.template-live-preview {
  min-height: clamp(250px, 34vw, 430px);
  padding: 3.5% 4%;
  color: #171823;
  background: #faf8f4;
}

.template-live-head,
.template-live-menu {
  display: flex;
  align-items: center;
}

.template-live-head {
  justify-content: flex-end;
  padding-bottom: 2.4%;
  gap: 4%;
  border-bottom: 1px solid #ded9d1;
  font-size: clamp(0.3rem, 0.7vw, 0.62rem);
}

.template-live-head strong {
  margin-right: auto;
  color: var(--brand-dark);
  font-size: 1.25em;
  letter-spacing: 0.08em;
}

.template-live-menu {
  padding: 1.8% 0;
  gap: 5%;
  color: #646678;
  font-size: clamp(0.25rem, 0.55vw, 0.5rem);
}

.template-live-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: clamp(125px, 17vw, 230px);
  overflow: hidden;
  background: #eee9e1;
  border-radius: clamp(5px, 0.8vw, 12px);
}

.template-live-hero > div {
  display: flex;
  padding: 10%;
  flex-direction: column;
  justify-content: center;
}

.template-live-hero small {
  color: var(--brand-dark);
  font-size: clamp(0.24rem, 0.5vw, 0.46rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.template-live-hero b {
  max-width: 11ch;
  margin-top: 4%;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.7vw, 1.45rem);
  line-height: 1.05;
}

.template-live-hero i {
  width: 72%;
  height: 4px;
  margin-top: 7%;
  background: #d5d0c9;
  border-radius: 99px;
  box-shadow: 0 7px #ddd8d1;
}

.template-live-hero em {
  width: max-content;
  margin-top: 11%;
  padding: 4% 8%;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 99px;
  font-size: clamp(0.24rem, 0.5vw, 0.46rem);
  font-style: normal;
  font-weight: 700;
}

.template-live-photo {
  display: block;
  min-height: 100%;
  background:
    radial-gradient(circle at 60% 32%, #d8d0ff 0 15%, transparent 16%),
    radial-gradient(ellipse at 50% 88%, #b8ae9e 0 28%, transparent 29%),
    linear-gradient(145deg, #ddd8f8, #cbc3b9 72%);
}

.template-live-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3%;
  gap: 2.5%;
}

.template-live-dots {
  display: flex;
  margin: 1.7% 0 2.2%;
  justify-content: center;
  gap: 5px;
}

.template-live-dots i {
  width: clamp(3px, 0.42vw, 6px);
  height: clamp(3px, 0.42vw, 6px);
  background: #c9c3ba;
  border-radius: 50%;
}

.template-live-dots i:first-child {
  background: var(--brand-dark);
}

.template-live-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2%;
}

.template-live-categories span {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 44%, #cbc3f5 0 26%, #eee9e2 27% 100%);
  border: 1px solid #e0dad1;
  border-radius: clamp(4px, 0.6vw, 9px);
}

.template-live-products span {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e7e1d8, #f5f2ed);
  border-radius: clamp(3px, 0.5vw, 8px);
}

.template-live-mobile {
  display: flex;
  height: 100%;
  padding: 20% 10% 10%;
  flex-direction: column;
  color: #171823;
  background: #faf8f4;
}

.template-live-mobile b {
  color: var(--brand-dark);
  font-size: clamp(0.22rem, 0.46vw, 0.4rem);
  letter-spacing: 0.05em;
}

.template-live-mobile i {
  display: block;
  aspect-ratio: 1.35 / 1;
  margin: 10% 0;
  background: linear-gradient(145deg, #ddd8f8, #b8ae9e);
  border-radius: 5px;
}

.template-live-mobile strong {
  font-family: var(--font-display);
  font-size: clamp(0.3rem, 0.62vw, 0.55rem);
  line-height: 1.05;
}

.template-live-mobile em {
  width: 65%;
  height: 4px;
  margin: 9% 0 14%;
  background: var(--brand-dark);
  border-radius: 99px;
}

.template-live-mobile-categories {
  display: flex;
  margin-bottom: 8%;
  gap: 5%;
}

.template-live-mobile-categories small {
  display: block;
  width: 30%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, #c8bef2 0 28%, #eee9e2 29% 100%);
  border-radius: 4px;
}

.template-live-mobile > span {
  display: block;
  aspect-ratio: 1 / 1;
  margin-bottom: 8%;
  background: #ebe6df;
  border-radius: 4px;
}

.template-comparison-mobile {
  position: absolute;
  right: clamp(8px, 1vw, 16px);
  bottom: clamp(10px, 1.2vw, 20px);
  width: clamp(60px, 6.4vw, 104px);
  aspect-ratio: 9 / 19.5;
  padding: 5px;
  overflow: hidden;
  background: #11172b;
  border-radius: clamp(12px, 1.3vw, 20px);
  box-shadow: 0 16px 30px rgba(17, 23, 43, 0.28);
}

.template-comparison-mobile > span {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 50%;
  width: 42%;
  height: 6px;
  background: #050814;
  border-radius: 999px;
  translate: -50% 0;
}

.template-comparison-mobile > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: top;
}

.template-comparison-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 14px 7px 0;
  gap: 2px 10px;
}

.template-comparison-copy > span {
  grid-column: 1 / -1;
}

.template-comparison-copy > strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.template-comparison-copy > small {
  color: var(--muted);
  font-size: 0.72rem;
}

/* Em tablet, três colunas comprimem demais as duas prévias. Os cards passam a
   ser linhas amplas; desktop/notebook permanecem em três colunas. */
@media (min-width: 761px) and (max-width: 980px) {
  .template-comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .template-comparison-card {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
    align-items: center;
  }

  .template-comparison-copy {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    padding: 18px;
  }
}

.template-card {
  width: 100%;
  min-width: 0;
  padding: 10px 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(17, 23, 43, 0.06);
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}



.template-card:hover,
.template-card.is-active {
  border-color: rgba(99, 91, 255, 0.34);
  box-shadow: 0 22px 50px rgba(17, 23, 43, 0.11);
}

.template-card:hover {
  transform: translateY(-5px);
}



.template-window-bar,
.template-detail-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  color: #747b8d;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 23, 43, 0.07);
}

.template-window-bar > i,
.template-detail-bar > i {
  width: 5px;
  height: 5px;
  background: #c9ccda;
  border-radius: 50%;
  box-shadow: 9px 0 #d8dae4, 18px 0 #e4e5eb;
}

.template-window-bar > b,
.template-detail-bar > span {
  font-size: 0.52rem;
  font-weight: 500;
}

.template-window-bar > em,
.template-detail-bar > b {
  justify-self: end;
  width: 17px;
  height: 1px;
  background: #8d92a1;
  box-shadow: 0 5px #8d92a1;
}

.template-window-bar-dark {
  color: #b7bbca;
  background: #0d1223;
  border-color: rgba(255, 255, 255, 0.08);
}



.template-detail {
  position: relative;
}



.custom-template-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 22px;
  padding: 22px 24px;
  gap: 18px;
  background: linear-gradient(115deg, #f0efff, #fff 62%);
  border: 1px dashed rgba(99, 91, 255, 0.42);
  border-radius: 18px;
}

.custom-template-icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--brand);
  background: #fff;
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(99, 91, 255, 0.12);
  place-items: center;
}

.custom-template-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.custom-template-copy > span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-template-copy h3 {
  margin: 2px 0 3px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
}

.custom-template-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.custom-template-cta {
  min-width: 170px;
  min-height: 46px;
  padding-inline: 18px;
  box-shadow: none;
  white-space: nowrap;
}

.template-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0;
  gap: 8px;
  color: #6a7286;
  font-size: 0.82rem;
}

.template-note svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.audience {
  --flow-start: var(--flow-templates-end);
  --flow-end: var(--flow-audience-end);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(99, 91, 255, 0.11), transparent 30%),
    radial-gradient(circle at 96% 84%, rgba(189, 253, 62, 0.14), transparent 28%),
    linear-gradient(180deg, var(--flow-start) 0%, #f1efff 52%, var(--flow-end) 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.12fr;
  align-items: center;
  gap: 85px;
}

.audience-grid > *,
.audience-cards article > div {
  min-width: 0;
}

.audience-copy > p {
  margin: 22px 0 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.audience-cards {
  display: grid;
  gap: 13px;
}

.audience-cards article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  padding: 21px 23px;
  gap: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(17, 23, 43, 0.035);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.audience-cards article:hover {
  border-color: rgba(99, 91, 255, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.audience-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
}

.audience-cards h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  white-space: nowrap;
}

.audience-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.faq {
  --flow-start: var(--flow-audience-end);
  --flow-end: var(--flow-faq-end);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 52%, rgba(99, 91, 255, 0.1), transparent 24%),
    linear-gradient(rgba(99, 91, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 91, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, var(--flow-start) 0%, #f2f1ff 52%, var(--flow-end) 100%);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(470px, 0.74fr) minmax(640px, 1.26fr);
  align-items: start;
  gap: clamp(52px, 5vw, 92px);
}

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

.faq-aside h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 3.55vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.03;
  text-wrap: balance;
}

.faq-aside h2 span {
  display: block;
  white-space: nowrap;
}

.faq-aside h2 span:last-child::after {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  margin-left: 0.08em;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.faq-aside > p {
  max-width: 505px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.faq-artwork {
  position: relative;
  display: grid;
  width: min(385px, 78%);
  aspect-ratio: 1;
  margin: 24px auto 4px;
  place-items: center;
}

.faq-artwork-glow {
  position: absolute;
  inset: 20% 8% 8%;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.24), transparent 68%);
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.faq-artwork-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 25px 28px rgba(52, 44, 160, 0.16));
  object-fit: contain;
}

.faq-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 3px 0 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.faq-reassurance li {
  display: grid;
  min-width: 0;
  align-content: start;
  justify-items: start;
}

.faq-reassurance-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 9px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(99, 91, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(38, 32, 114, 0.1);
  place-items: center;
}

.faq-reassurance-icon img {
  width: 53px;
  height: 53px;
  filter: drop-shadow(0 7px 8px rgba(42, 35, 120, 0.14));
  object-fit: contain;
}

.faq-reassurance strong {
  display: block;
  min-height: calc(2 * 1.35em);
  font-family: var(--font-display);
  font-size: 0.84rem;
  line-height: 1.35;
  text-wrap: balance;
}

.faq-reassurance small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.faq-content {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.accordion {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(17, 23, 43, 0.025);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.accordion details[open] {
  background: linear-gradient(115deg, #fff, rgba(242, 241, 255, 0.9));
  border-color: rgba(99, 91, 255, 0.5);
  box-shadow: 0 15px 38px rgba(67, 59, 170, 0.1);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 17px 21px 17px 24px;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: -5px;
  border-radius: 12px;
  box-shadow: none;
}

.faq-question {
  min-width: 0;
  text-wrap: pretty;
}

.faq-summary-action {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.faq-summary-action i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--brand-soft);
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(99, 91, 255, 0.1);
}

.faq-summary-action i::before,
.faq-summary-action i::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  content: "";
  transition: transform 180ms ease;
}

.faq-summary-action i::after {
  transform: rotate(90deg);
}

.accordion details[open] .faq-summary-action i::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 760px;
  margin: -2px 0 0;
  padding: 0 86px 25px 24px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.faq-support {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 19px 21px;
  gap: 16px;
  background: linear-gradient(115deg, #fff, #f4f3ff);
  border: 1px solid rgba(99, 91, 255, 0.22);
  border-radius: 17px;
  box-shadow: 0 12px 35px rgba(43, 37, 128, 0.06);
}

.faq-support-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.faq-support-icon .saas-icon-3d {
  filter: drop-shadow(0 10px 13px rgba(42, 35, 120, 0.24));
}

.faq-support h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
}

.faq-support p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.faq-support-cta {
  min-width: 190px;
  min-height: 48px;
}

.final-cta {
  --flow-start: var(--flow-faq-end);
  --flow-end: var(--flow-cta-end);
  overflow: hidden;
  padding-top: calc(var(--section-space) - 12px);
  padding-bottom: calc(var(--section-space) - 12px);
  background:
    radial-gradient(circle at 50% 116%, rgba(99, 91, 255, 0.14), transparent 44%),
    linear-gradient(180deg, var(--flow-start) 0%, #f3f3ff 48%, var(--flow-end) 100%);
}

/* Duas colunas: a copy sozinha deixava metade do card vazia e o ícone de marca
   ao fundo aparecia cortado pela borda. Os três pilares vêm do conceito da
   marca no manual de identidade (Crie · Personalize · Venda). */
.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  overflow: hidden;
  min-height: 385px;
  padding: 62px 68px;
  gap: clamp(36px, 4vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 46%, rgba(99, 91, 255, 0.4), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(189, 253, 62, 0.1), transparent 30%),
    linear-gradient(125deg, #0c1226 0%, #11172b 60%, #171d38 100%);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(17, 23, 43, 0.2);
}

.cta-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.cta-pillars li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  padding: 14px 18px;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.cta-pillars li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(189, 253, 62, 0.3);
  transform: translateX(4px);
}

.cta-pillar-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
}

.cta-pillars strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.cta-pillars small {
  display: block;
  margin-top: 3px;
  color: #a9b2c9;
  font-size: 0.79rem;
  line-height: 1.45;
  text-wrap: pretty;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
  mask-image: linear-gradient(90deg, transparent, #000);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(2.35rem, 4.2vw, 3.6rem);
}

.cta-content > p {
  max-width: 540px;
  margin: 19px 0 27px;
  color: #b5bdd3;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 14px 32px rgba(189, 253, 62, 0.2);
}

.button-lime:hover {
  color: var(--ink);
  background: #c8ff59;
  border-color: #c8ff59;
  box-shadow: 0 18px 39px rgba(189, 253, 62, 0.25);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

/* Canto inferior esquerdo: no topo à direita os pixels caíam sobre o primeiro
   card dos pilares. */
.cta-pixels {
  position: absolute;
  z-index: 1;
  bottom: 44px;
  left: 30px;
}

.cta-pixels i {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--lime);
  border-radius: 7px;
  transform: rotate(11deg);
}

.cta-pixels i:nth-child(2) {
  top: 31px;
  left: 27px;
  width: 16px;
  height: 16px;
  background: #756eff;
}

.cta-pixels i:nth-child(3) {
  top: 55px;
  left: -5px;
  width: 10px;
  height: 10px;
  background: #9a94ff;
}

.site-footer {
  --flow-start: var(--flow-cta-end);
  --flow-end: var(--flow-footer-end);
  position: relative;
  padding: 72px 0 24px;
  background:
    radial-gradient(circle at 8% 0, rgba(99, 91, 255, 0.07), transparent 34%),
    linear-gradient(180deg, var(--flow-start) 0%, var(--flow-end) 100%);
  border-top: 1px solid rgba(99, 91, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  padding-bottom: 48px;
  gap: clamp(48px, 6vw, 110px);
}

.footer-brand {
  max-width: 480px;
}

.footer-brand img {
  width: 152px;
  height: auto;
}

.footer-tagline {
  margin: 15px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.footer-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.footer-actions {
  display: flex;
  align-items: center;
  margin-top: 22px;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cta.button-small {
  min-height: 46px;
  padding-inline: 20px;
}

.footer-cta .button-icon-lead {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  stroke-width: 1.8;
}

.footer-login {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  gap: 8px;
  color: #4f576d;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 23, 43, 0.12);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.footer-login svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.footer-login:hover {
  color: var(--brand);
  background: #fff;
  border-color: rgba(99, 91, 255, 0.35);
}

.footer-login:hover svg {
  transform: translateX(2px);
}

/* Duas colunas iguais dentro do espaço que sobra da marca: com a coluna da
   marca limitada a 460px, os links se distribuem em vez de se amontoarem
   na borda direita. */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: clamp(32px, 4vw, 72px);
}

.footer-links > div {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 11px;
}

.footer-links ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.footer-links strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}

.footer-links a {
  display: inline-block;
  color: var(--muted);
  font-size: 0.86rem;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  gap: 16px 28px;
  flex-wrap: wrap;
  color: #61697e;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.footer-bottom-end {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-to-top svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.footer-to-top:hover {
  color: var(--brand-dark);
}

.footer-to-top:hover svg {
  transform: translateY(-2px);
}

.footer-cookie-link {
  color: #596176;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-cookie-link:hover {
  color: var(--brand-dark);
}

/* --------------------------------------------------------------------------
   Preferências de cookies
   --------------------------------------------------------------------------
   A aba é uma região não modal: informa, recebe a escolha por formulário PHP
   e mantém toda a página utilizável. O painel sólido é o fallback sem blur. */
.cookie-consent {
  position: fixed;
  z-index: 900;
  right: var(--page-gutter);
  bottom: max(20px, env(safe-area-inset-bottom));
  left: var(--page-gutter);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  scrollbar-width: thin;
}

.cookie-consent-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 20px;
  grid-template-columns: 58px minmax(0, 1fr) minmax(210px, 224px);
  align-items: center;
  gap: 18px;
  overflow: hidden;
  color: var(--ink);
  background: #fbfaff;
  border: 1px solid #d8d6f0;
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(24, 20, 75, 0.2),
    0 2px 10px rgba(17, 23, 43, 0.08);
  pointer-events: auto;
}

.cookie-consent-panel::before {
  position: absolute;
  z-index: -1;
  top: -80px;
  left: -60px;
  width: 260px;
  height: 220px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

/* Anel neon interno: realça a escolha sem aumentar o retângulo do painel ou
   criar uma sombra grande e cara de repintar durante a rolagem. */
.cookie-consent-panel::after {
  position: absolute;
  z-index: 4;
  inset: 1px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--cookie-neon-angle, 0deg),
    rgba(99, 91, 255, 0.12) 0deg,
    rgba(99, 91, 255, 0.95) 72deg,
    rgba(189, 253, 62, 0.98) 112deg,
    rgba(99, 91, 255, 0.18) 172deg,
    rgba(99, 91, 255, 0.82) 282deg,
    rgba(99, 91, 255, 0.12) 360deg
  );
  border-radius: 23px;
  content: "";
  opacity: 0.82;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.cookie-consent-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.2), rgba(99, 91, 255, 0.04) 62%, transparent 70%);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(99, 91, 255, 0.16),
    0 0 20px rgba(99, 91, 255, 0.3),
    0 0 34px rgba(189, 253, 62, 0.15);
}

.cookie-consent-icon::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.38), rgba(189, 253, 62, 0.14) 44%, transparent 70%);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.cookie-consent-icon-art {
  display: block;
  width: 68px;
  max-width: none;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(44, 34, 137, 0.24));
}

.cookie-consent-copy {
  min-width: 0;
}

.cookie-consent-heading {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.cookie-consent-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  letter-spacing: -0.035em;
  line-height: 1.24;
  text-wrap: balance;
}

.cookie-current-choice {
  display: inline-flex;
  min-height: 25px;
  padding: 3px 9px;
  align-items: center;
  color: #425f00;
  background: rgba(189, 253, 62, 0.28);
  border: 1px solid rgba(116, 171, 0, 0.23);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-consent-copy > p {
  max-width: 740px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.cookie-preferences {
  margin-top: 5px;
}

.cookie-preferences summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  list-style: none;
}

.cookie-preferences summary::-webkit-details-marker {
  display: none;
}

.cookie-preferences summary::after {
  width: 7px;
  height: 7px;
  margin: -4px 3px 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: margin 160ms ease, transform 160ms ease;
}

.cookie-preferences[open] summary::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.cookie-preferences ul {
  display: grid;
  max-width: 740px;
  margin: 5px 0 0;
  padding: 9px;
  gap: 6px;
  background: rgba(99, 91, 255, 0.055);
  border: 1px solid rgba(99, 91, 255, 0.11);
  border-radius: 12px;
  list-style: none;
}

.cookie-preferences li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #596176;
  font-size: 0.8rem;
  line-height: 1.45;
}

.cookie-preferences li strong {
  margin-right: 4px;
  color: var(--ink);
}

.cookie-preferences li b {
  flex: 0 0 auto;
  color: var(--brand-dark);
  font-size: 0.75rem;
  white-space: nowrap;
}

.cookie-consent-actions {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.cookie-choice {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cookie-choice svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.cookie-choice-primary {
  color: var(--ink);
  background: var(--lime);
  border-color: #a7ea24;
  box-shadow: 0 12px 26px rgba(133, 194, 15, 0.2);
}

.cookie-choice-secondary {
  color: #4f576d;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 23, 43, 0.13);
}

.cookie-choice:hover {
  transform: translateY(-1px);
}

.cookie-choice-primary:hover {
  background: #c9ff5d;
}

.cookie-choice-primary:hover svg {
  transform: translateX(2px);
}

.cookie-choice-secondary:hover {
  color: var(--brand-dark);
  background: #fff;
  border-color: rgba(99, 91, 255, 0.35);
}

.cookie-consent-error {
  margin: 0;
  padding: 8px 10px;
  color: #8b2430;
  background: #fff0f1;
  border: 1px solid #f0c8cd;
  border-radius: 9px;
  font-size: 0.7rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Entradas de conteudo
   --------------------------------------------------------------------------
   A hero usa uma sequencia temporal curta porque ja nasce dentro da tela. Os
   demais topicos usam a linha do tempo nativa do scroll, quando suportada.
   Fora do @supports o estado original permanece visivel: a leitura da pagina
   nunca depende da animacao nem de JavaScript. */
@keyframes cv-pop-in {
  0% {
    opacity: 0;
    translate: 0 var(--cv-pop-distance, 22px);
    scale: var(--cv-pop-scale, 0.94);
  }

  68% {
    opacity: 1;
    translate: 0 -3px;
    scale: var(--cv-pop-over, 1.018);
  }

  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes cv-hero-visual-in {
  0% {
    opacity: 0;
    translate: 34px 18px;
    scale: 0.955;
  }

  72% {
    opacity: 1;
    translate: -3px -2px;
    scale: 1.012;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes cv-rays-in {
  0% {
    opacity: 0;
    translate: -8px 8px;
    scale: 0.62;
  }

  72% {
    opacity: 1;
    translate: 1px -1px;
    scale: 1.08;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes cv-hero-pixel-in {
  0% {
    opacity: 0;
    translate: 0 12px;
    rotate: -8deg;
    scale: 0.58;
  }

  68% {
    opacity: 1;
    translate: 0 -2px;
    rotate: 3deg;
    scale: 1.09;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }
}

@keyframes cv-underline-in {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

@keyframes cv-scroll-pop {
  0% {
    opacity: 0;
    translate: 0 var(--cv-pop-distance, 22px);
    scale: var(--cv-pop-scale, 0.94);
  }

  70% {
    opacity: 1;
    translate: 0 -3px;
    scale: var(--cv-pop-over, 1.018);
  }

  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

/* As entradas internas usam movimentos próprios. A superfície do card entra
   primeiro; ícones ganham um pop mais perceptível; textos apenas sobem e
   ganham opacidade para preservar nitidez durante a leitura. */
@keyframes cv-icon-pop {
  0% {
    opacity: 0;
    translate: 0 14px;
    scale: 0.72;
  }

  72% {
    opacity: 1;
    translate: 0 -3px;
    scale: 1.08;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes cv-text-in {
  0% {
    opacity: 0;
    translate: 0 13px;
    scale: 0.99;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes cv-header-in {
  0% {
    opacity: 0;
    translate: 0 -16px;
    scale: 0.97;
  }

  70% {
    opacity: 1;
    translate: 0 2px;
    scale: 1.01;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@property --cookie-neon-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes cookie-neon-loop {
  to {
    --cookie-neon-angle: 360deg;
  }
}

@keyframes cookie-icon-neon {
  0%, 100% {
    opacity: 0.58;
    scale: 0.92;
  }

  50% {
    opacity: 0.9;
    scale: 1.07;
  }
}

@keyframes header-surface-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* A timeline raiz fornece um estado de rolagem sem qualquer JavaScript. */
@supports (animation-timeline: scroll()) {
  .site-header::before {
    animation: header-surface-in 1ms linear both;
    animation-timeline: scroll(root block);
    animation-range: 0px 96px;
  }

  /* Foco por teclado e menu aberto sempre recebem contraste estável. */
  .site-header:focus-within::before,
  .site-header:has(.mobile-menu[open])::before {
    opacity: 1;
    animation: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .cookie-consent-panel::after {
    animation: cookie-neon-loop 5.2s linear infinite;
  }

  .cookie-consent-icon::before {
    animation: cookie-icon-neon 2.8s ease-in-out infinite;
  }

  /* Header: primeiro a marca, depois a navegação e por fim as ações. A entrada
     ocorre no carregamento e não interfere nos estados de hover dos botões. */
  :is(.site-header .brand, .desktop-nav > a, .header-actions > .header-login, .mobile-menu > summary) {
    animation: cv-header-in 680ms cubic-bezier(0.2, 0.85, 0.3, 1.12) both;
  }

  .site-header .brand { animation-delay: 80ms; }
  .desktop-nav > a:nth-child(1) { animation-delay: 190ms; }
  .desktop-nav > a:nth-child(2) { animation-delay: 260ms; }
  .desktop-nav > a:nth-child(3) { animation-delay: 330ms; }
  .desktop-nav > a:nth-child(4) { animation-delay: 400ms; }
  .desktop-nav > a:nth-child(5) { animation-delay: 470ms; }
  .header-actions > .header-login { animation-delay: 560ms; }
  .mobile-menu > summary { animation-delay: 220ms; }

  /* Hero: selo, titulo, descricao e acoes surgem em vez de entrar em bloco. */
  .hero-copy > .eyebrow,
  .hero-title-line,
  .hero-lead,
  .hero-actions > .button,
  .hero-points > li,
  .value-strip-copy,
  .value-items > .value-item {
    animation-name: cv-pop-in;
    animation-duration: 760ms;
    animation-timing-function: cubic-bezier(0.2, 0.85, 0.3, 1.15);
    animation-fill-mode: both;
  }

  .hero-copy > .eyebrow {
    animation-delay: 100ms;
  }

  .hero-title-line:nth-child(1) {
    animation-delay: 260ms;
  }

  .hero-title-line:nth-child(2) {
    animation-delay: 420ms;
  }

  .hero-title-line:nth-child(3) {
    animation-delay: 580ms;
  }

  .hero-lead {
    animation-delay: 780ms;
  }

  .hero-actions > .button:nth-child(1) {
    animation-delay: 980ms;
  }

  .hero-actions > .button:nth-child(2) {
    animation-delay: 1120ms;
  }

  .hero-points > li:nth-child(1) {
    animation-delay: 1280ms;
  }

  .hero-points > li:nth-child(2) {
    animation-delay: 1410ms;
  }

  .hero-points > li:nth-child(3) {
    animation-delay: 1540ms;
  }

  /* A faixa pertence a primeira dobra. Uma timeline de scroll a deixava
     parcialmente transparente enquanto o usuario permanecia no topo. */
  .value-strip-copy {
    animation-delay: 1220ms;
  }

  .value-items > .value-item:nth-child(1) {
    animation-delay: 1380ms;
  }

  .value-items > .value-item:nth-child(2) {
    animation-delay: 1540ms;
  }

  .value-items > .value-item:nth-child(3) {
    animation-delay: 1700ms;
  }

  .value-items > .value-item:nth-child(4) {
    animation-delay: 1860ms;
  }

  .value-item-icon,
  .value-item-copy {
    animation-duration: 720ms;
    animation-timing-function: cubic-bezier(0.2, 0.85, 0.3, 1.12);
    animation-fill-mode: both;
  }

  .value-item-icon {
    animation-name: cv-icon-pop;
  }

  .value-item-copy {
    animation-name: cv-text-in;
  }

  .value-item:nth-child(1) .value-item-icon { animation-delay: 1600ms; }
  .value-item:nth-child(2) .value-item-icon { animation-delay: 1760ms; }
  .value-item:nth-child(3) .value-item-icon { animation-delay: 1920ms; }
  .value-item:nth-child(4) .value-item-icon { animation-delay: 2080ms; }

  .value-item:nth-child(1) .value-item-copy { animation-delay: 1820ms; }
  .value-item:nth-child(2) .value-item-copy { animation-delay: 1980ms; }
  .value-item:nth-child(3) .value-item-copy { animation-delay: 2140ms; }
  .value-item:nth-child(4) .value-item-copy { animation-delay: 2300ms; }

  .hero-device-visual {
    animation: cv-hero-visual-in 1080ms cubic-bezier(0.16, 0.84, 0.28, 1.08) 500ms both;
  }

  .hero-device-rays {
    animation: cv-rays-in 700ms cubic-bezier(0.2, 0.9, 0.3, 1.2) 1640ms both;
  }

  /* Cada pixel entra depois dos dispositivos e, somente após o pop, passa a
     flutuar em um ritmo próprio. As duas animações permanecem independentes. */
  .hero-brand-pixel-lime {
    animation:
      cv-hero-pixel-in 680ms cubic-bezier(0.2, 0.88, 0.3, 1.18) 1280ms both,
      brand-pixel-float 4.2s ease-in-out 1960ms infinite alternate;
  }

  .hero-brand-pixel-purple {
    animation:
      cv-hero-pixel-in 680ms cubic-bezier(0.2, 0.88, 0.3, 1.18) 1440ms both,
      brand-pixel-float 4.7s ease-in-out 2120ms infinite alternate-reverse;
  }

  .hero-brand-pixel-navy {
    animation:
      cv-hero-pixel-in 680ms cubic-bezier(0.2, 0.88, 0.3, 1.18) 1600ms both,
      brand-pixel-float 3.8s ease-in-out 2280ms infinite alternate;
  }

  .headline-accent::after {
    transform-origin: left center;
    animation: cv-underline-in 680ms cubic-bezier(0.2, 0.8, 0.25, 1) 940ms both;
  }
}

/* A entrada dos tópicos é acionada pelo scroll, mas reproduz uma animação
   temporal completa como a hero. Diferente de uma animação dirigida pelo
   progresso da rolagem, nenhum texto fica preso em opacidade intermediária. */
@supports (timeline-trigger: --cv-reveal view()) and (animation-trigger: --cv-reveal play-once) {
  @media (prefers-reduced-motion: no-preference) {
    /* `hidden` cria um scroll container e encerra a view timeline cedo. Nestes
       elementos ele servia apenas como recorte, portanto `clip` preserva o
       enquadramento sem separar a animacao da rolagem principal da pagina. */
    .section-shell,
    .value-strip,
    .value-strip-inner,
    .benefits,
    .platform,
    .steps,
    .templates,
    .audience,
    .faq,
    .final-cta,
    .cta-card {
      overflow: clip;
    }

    /* Cards herdam um pequeno atraso por posição. Ícones e textos somam seus
       próprios atrasos para montar a hierarquia superfície → ícone → texto. */
    :is(
      .benefit-story,
      .benefit-journey > .benefit-card,
      .platform-features > li,
      .checkout-flow > li,
      .checkout-provider,
      .steps-grid > li,
      .template-comparison-card,
      .custom-template-card,
      .audience-cards > article,
      .faq-reassurance > li,
      .accordion > details,
      .faq-support,
      .cta-card,
      .cta-pillars > li
    ) {
      --cv-item-delay: 0ms;
    }

    :where(
      .benefits .section-heading > *,
      .benefit-story,
      .benefit-journey > .benefit-card,
      .benefit-story-media,
      .benefit-card .benefit-index > span,
      .benefit-card .feature-icon,
      .benefit-card .benefit-card-copy,
      .benefit-card > ul,
      .benefit-card .benefit-preview,
      .platform-title-line,
      .platform-copy > p,
      .platform-features > li,
      .platform-features > li > span,
      .platform-feature-copy,
      .platform-device-laptop,
      .platform-device-phone,
      .checkout-title-line,
      .checkout-copy > [data-checkout-lead],
      .checkout-flow > li,
      .checkout-flow > li > span,
      .checkout-flow > li > div,
      .checkout-provider,
      .checkout-provider-icon,
      .checkout-provider > div,
      .checkout-note,
      .checkout-visual,
      .steps .split-heading h2,
      .steps .split-heading > p,
      .steps-grid > li,
      .steps-grid > li > .step-number,
      .steps-grid > li > .step-icon,
      .steps-grid > li > h3,
      .steps-grid > li > p,
      .templates .section-heading > *,
      .template-comparison-card,
      .template-comparison-desktop,
      .template-comparison-mobile,
      .template-comparison-copy,
      .custom-template-card,
      .custom-template-icon,
      .custom-template-copy,
      .custom-template-cta,
      .template-note,
      .audience-copy > *,
      .audience-cards > article,
      .audience-icon,
      .audience-cards > article > div,
      .faq-aside > .eyebrow,
      .faq-aside h2 > span,
      .faq-aside > p,
      .faq-artwork,
      .faq-reassurance > li,
      .faq-reassurance-icon,
      .faq-reassurance > li > strong,
      .faq-reassurance > li > small,
      .accordion > details,
      .faq-question,
      .faq-summary-action,
      .accordion > details[open] > p,
      .faq-support,
      .faq-support-icon,
      .faq-support > div,
      .faq-support-cta,
      .cta-card,
      .cta-content > h2,
      .cta-content > p,
      .cta-actions > .button,
      .cta-pillars > li,
      .cta-pillar-icon,
      .cta-pillars > li > div
    ) {
      --cv-pop-delay: var(--cv-item-delay, 0ms);
      animation-name: cv-scroll-pop;
      animation-duration: 760ms;
      animation-delay: var(--cv-pop-delay);
      animation-timing-function: cubic-bezier(0.2, 0.85, 0.3, 1.12);
      animation-fill-mode: both;
      animation-timeline: auto;
      animation-range: normal;
      animation-trigger: --cv-reveal play-once;
    }

    /* Cada card cria um gatilho para a propria superficie e para seus filhos.
       Os demais alvos criam um gatilho individual. Assim a animacao comeca
       quando o elemento entra na tela e continua pelo relogio, mesmo que a
       pessoa pare de rolar. */
    :is(
      .benefit-story,
      .benefit-journey > .benefit-card,
      .platform-features > li,
      .checkout-flow > li,
      .checkout-provider,
      .steps-grid > li,
      .template-comparison-card,
      .custom-template-card,
      .audience-cards > article,
      .faq-reassurance > li,
      .accordion > details,
      .faq-support,
      .cta-card,
      .cta-pillars > li,
      .benefits .section-heading > *,
      .platform-title-line,
      .platform-copy > p,
      .platform-device-laptop,
      .platform-device-phone,
      .checkout-title-line,
      .checkout-copy > [data-checkout-lead],
      .checkout-note,
      .checkout-visual,
      .steps .split-heading h2,
      .steps .split-heading > p,
      .templates .section-heading > *,
      .template-note,
      .audience-copy > *,
      .faq-aside > .eyebrow,
      .faq-aside h2 > span,
      .faq-aside > p,
      .faq-artwork
    ) {
      timeline-trigger: --cv-reveal view(block) entry 10% exit 0% / cover;
      trigger-scope: --cv-reveal;
    }

    :is(
      .benefit-card .benefit-index > span,
      .benefit-card .feature-icon,
      .platform-features > li > span,
      .checkout-flow > li > span,
      .checkout-provider-icon,
      .steps-grid > li > .step-number,
      .steps-grid > li > .step-icon,
      .custom-template-icon,
      .audience-icon,
      .faq-reassurance-icon,
      .faq-summary-action,
      .faq-support-icon,
      .cta-pillar-icon
    ) {
      animation-name: cv-icon-pop;
      animation-duration: 680ms;
      animation-delay: calc(var(--cv-item-delay, 0ms) + 220ms);
    }

    :is(
      .benefit-card .benefit-card-copy,
      .benefit-card > ul,
      .platform-feature-copy,
      .checkout-flow > li > div,
      .checkout-provider > div,
      .steps-grid > li > h3,
      .steps-grid > li > p,
      .template-comparison-copy,
      .custom-template-copy,
      .custom-template-cta,
      .audience-cards > article > div,
      .faq-reassurance > li > strong,
      .faq-reassurance > li > small,
      .faq-question,
      .accordion > details[open] > p,
      .faq-support > div,
      .faq-support-cta,
      .cta-content > h2,
      .cta-content > p,
      .cta-actions > .button,
      .cta-pillars > li > div
    ) {
      animation-name: cv-text-in;
      animation-duration: 700ms;
      animation-delay: calc(var(--cv-item-delay, 0ms) + 420ms);
    }

    /* Ilustrações ocupam o estágio intermediário entre base e conteúdo. */
    :is(
      .benefit-story-media,
      .benefit-card .benefit-preview,
      .platform-device-laptop,
      .platform-device-phone,
      .checkout-visual,
      .template-comparison-desktop,
      .template-comparison-mobile,
      .faq-artwork
    ) {
      animation-name: cv-icon-pop;
      animation-duration: 720ms;
      animation-delay: calc(var(--cv-item-delay, 0ms) + 260ms);
    }

    /* Cards irmãos ganham um intervalo curto, sem depender da velocidade com
       que a pessoa gira a roda do mouse ou arrasta a barra de rolagem. */
    :is(
      .benefit-journey,
      .platform-features,
      .checkout-flow,
      .steps-grid,
      .template-comparison,
      .audience-cards,
      .faq-reassurance,
      .accordion,
      .cta-pillars
    ) > :nth-child(1) { --cv-item-delay: 0ms; }

    :is(
      .benefit-journey,
      .platform-features,
      .checkout-flow,
      .steps-grid,
      .template-comparison,
      .audience-cards,
      .faq-reassurance,
      .accordion,
      .cta-pillars
    ) > :nth-child(2) { --cv-item-delay: 140ms; }

    :is(
      .benefit-journey,
      .platform-features,
      .checkout-flow,
      .steps-grid,
      .template-comparison,
      .audience-cards,
      .faq-reassurance,
      .accordion,
      .cta-pillars
    ) > :nth-child(3) { --cv-item-delay: 280ms; }

    :is(.platform-features, .steps-grid, .accordion) > :nth-child(4) {
      --cv-item-delay: 420ms;
    }

    .accordion > :nth-child(5) { --cv-item-delay: 560ms; }
    .accordion > :nth-child(6) { --cv-item-delay: 700ms; }

    /* Título e apoio de cada tópico repetem a cadência da hero. */
    :is(
      .benefits .section-heading > p,
      .steps .split-heading > p,
      .templates .section-heading > p,
      .platform-title-line:nth-child(2),
      .checkout-title-line:nth-child(2),
      .audience-copy > h2,
      .faq-aside h2 > span:nth-child(2)
    ) { --cv-item-delay: 180ms; }

    :is(
      .platform-copy > p,
      .checkout-copy > [data-checkout-lead],
      .audience-copy > p,
      .faq-aside > p
    ) { --cv-item-delay: 360ms; }

    .checkout-provider,
      .custom-template-card,
      .faq-support
    ) { --cv-item-delay: 260ms; }

    :is(
      .checkout-note,
      .template-note,
      .audience-copy > .text-link
    ) { --cv-item-delay: 440ms; }

    .platform-device-laptop { --cv-item-delay: 80ms; }
    .platform-device-phone { --cv-item-delay: 300ms; }
    .checkout-visual { --cv-item-delay: 140ms; }
    .faq-artwork { --cv-item-delay: 220ms; }

    /* Dentro do CTA: superfície, mensagem, botões e pilares. */
    .cta-content > h2 { --cv-item-delay: 0ms; }
    .cta-content > p { --cv-item-delay: 180ms; }
    .cta-actions > .button:nth-child(1) { --cv-item-delay: 360ms; }
    .cta-actions > .button:nth-child(2) { --cv-item-delay: 500ms; }
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  :is(
    .hero-copy > .eyebrow,
    .hero-title-line,
    .hero-lead,
    .hero-actions > .button,
    .hero-points > li,
    .value-strip-copy,
    .value-items > .value-item,
    .benefits .section-heading > *,
    .benefit-story,
    .benefit-journey > .benefit-card,
    .platform-copy > *,
    .platform-features > li,
    .checkout-copy > *,
    .checkout-flow > li,
    .checkout-visual,
    .steps-grid > li,
    .template-comparison-card,
    .custom-template-card,
    .audience-copy > *,
    .audience-cards > article,
    .faq-aside > *,
    .accordion > details,
    .faq-support,
    .cta-content > *,
    .cta-pillars > li
  ) {
    --cv-pop-distance: 14px;
    --cv-pop-scale: 0.97;
    --cv-pop-over: 1.01;
  }

  .hero-device-visual {
    animation-duration: 960ms;
  }
}

/* Esta regra vem depois do sistema de reveal dos topicos para que o acionador
   compacto preserve a ordem marca -> menu em qualquer largura mobile/tablet. */
@media (max-width: 1180px) and (prefers-reduced-motion: no-preference) {
  .mobile-menu > summary.menu-toggle {
    animation-delay: 220ms;
  }
}

.motion-border {
  position: relative;
  isolation: isolate;
}

@supports (-webkit-mask-composite: xor) or (mask-composite: exclude) {
  .motion-border::after {
    position: absolute;
    z-index: 8;
    inset: 0;
    padding: 1px;
    background: conic-gradient(
      from var(--edge-angle),
      transparent 0 66%,
      rgba(99, 91, 255, 0.95) 77%,
      var(--lime) 86%,
      transparent 97%
    );
    border-radius: inherit;
    content: "";
    opacity: 0;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
  }

  /* A borda reage a hover/foco; não depende de observador em JavaScript. */
  .motion-border:hover::after,
  .motion-border:focus-within::after {
    animation: border-pass 1.55s ease-out 320ms both;
  }
}

/* --------------------------------------------------------------------------
   Linha neon da chamada principal
   --------------------------------------------------------------------------
   Mesmo desenho da borda dos cartões — o cônico gira atrás de uma máscara
   que só deixa ver a moldura —, com duas diferenças que vêm do papel dela
   na página.

   Corre sempre, e não no hover. No celular não há hover, e no desktop a
   linha que só acende depois do ponteiro chega tarde: quem ainda não achou
   o botão é exatamente quem ela deveria puxar.

   E brilha mais: a borda ganha um halo por trás, com a mesma cor da linha,
   para a luz existir fora do traço de um pixel. Sem isso a linha se perde
   no verde do próprio botão.

   Só a chamada principal recebe. Se todo botão tivesse uma linha correndo,
   nenhuma chamaria atenção.
   -------------------------------------------------------------------------- */

.button-neon {
  position: relative;
  isolation: isolate;
}

@supports (-webkit-mask-composite: xor) or (mask-composite: exclude) {
  /*
   * O halo. Fica atrás do botão (z-index negativo dentro do isolamento) e
   * desfocado, então é luz e não contorno. É ele que faz o brilho aparecer
   * em cima do lime, onde uma linha fina sozinha sumiria.
   */
  .button-neon::before {
    position: absolute;
    z-index: -1;
    inset: -2px;
    background: conic-gradient(
      from var(--edge-angle),
      transparent 0 84%,
      rgba(99, 91, 255, 0.7) 90%,
      var(--lime) 95%,
      transparent 99%
    );
    border-radius: inherit;
    content: "";
    filter: blur(3px);
    opacity: 0.5;
    pointer-events: none;
  }

  .button-neon::after {
    position: absolute;
    z-index: 2;
    inset: -1px;
    padding: 2px;
    background: conic-gradient(
      from var(--edge-angle),
      transparent 0 84%,
      rgba(99, 91, 255, 1) 89%,
      #ffffff 93%,
      var(--lime) 96%,
      transparent 99%
    );
    border-radius: inherit;
    content: "";
    opacity: 1;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
  }

  @media (prefers-reduced-motion: no-preference) {
    .button-neon::before,
    .button-neon::after {
      animation: border-loop 2.4s linear infinite;
    }
  }

  /*
   * Parada, a linha vira um borrão fixo num canto, que parece defeito. Quem
   * pediu menos movimento fica com o botão limpo.
   */
  @media (prefers-reduced-motion: reduce) {
    .button-neon::before,
    .button-neon::after {
      display: none;
    }
  }
}

@keyframes border-pass {
  0% {
    --edge-angle: -90deg;
    opacity: 0;
  }

  18% {
    opacity: 0.9;
  }

  100% {
    --edge-angle: 270deg;
    opacity: 0.28;
  }
}

@keyframes border-loop {
  from {
    --edge-angle: -90deg;
  }

  to {
    --edge-angle: 270deg;
  }
}

@media (hover: hover) and (pointer: fine) {
  @supports (-webkit-mask-composite: xor) or (mask-composite: exclude) {
    .motion-border:hover::after,
    .motion-border:focus-within::after {
      opacity: 0.75;
      animation: border-loop 2.4s linear infinite;
    }
  }
}


/* --------------------------------------------------------------------------
   Glassmorphism
   --------------------------------------------------------------------------
   As regras acima formam o fallback sólido. O vidro só é ativado quando o
   navegador oferece blur real; assim conteúdo e contraste não dependem dele.
   Elementos aninhados usam transparência, mas não um segundo blur caro. */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .cookie-consent-panel {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 255, 0.7)),
      rgba(255, 255, 255, 0.74);
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow:
      0 28px 80px rgba(24, 20, 75, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 0 0 1px rgba(99, 91, 255, 0.13);
    -webkit-backdrop-filter: blur(18px) saturate(138%);
    backdrop-filter: blur(18px) saturate(138%);
  }

  .site-header {
    background: transparent;
    border: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header::before {
    background: rgba(255, 255, 255, 0.74);
    border-bottom-color: rgba(255, 255, 255, 0.66);
    box-shadow:
      0 10px 34px rgba(36, 30, 108, 0.09),
      inset 0 -1px 0 rgba(99, 91, 255, 0.08);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
  }

  .header-login,
  .button-secondary,
  .footer-login,
  .menu-toggle {
    background: var(--glass-control);
    border-color: var(--glass-border-light);
    box-shadow:
      0 10px 28px rgba(35, 28, 110, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    backdrop-filter: blur(12px) saturate(130%);
  }

  .value-strip-inner,
  .benefit-card,
  .template-comparison-card,
  .audience-cards article,
  .accordion details,
  .faq-support {
    background: var(--glass-light);
    border-color: var(--glass-border-light);
    box-shadow:
      var(--glass-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 0 0 1px var(--glass-border-brand);
    -webkit-backdrop-filter: blur(18px) saturate(138%);
    backdrop-filter: blur(18px) saturate(138%);
  }

  .value-strip-inner {
    background:
      radial-gradient(circle at 0 0, rgba(99, 91, 255, 0.13), transparent 34%),
      var(--glass-light);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    backdrop-filter: blur(22px) saturate(145%);
  }

  .value-item {
    background: rgba(255, 255, 255, 0.43);
    border-color: rgba(255, 255, 255, 0.54);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  }

  .benefit-card:hover,
  .template-card:hover,
  .template-card.is-active,
  .audience-cards article:hover,
  .accordion details[open] {
    background: var(--glass-light-strong);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 24px 58px rgba(35, 28, 110, 0.15),
      inset 0 1px 0 #fff,
      0 0 0 1px rgba(99, 91, 255, 0.24);
  }

  .platform-features {
    gap: 10px 12px;
  }

  .platform-features > li {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    backdrop-filter: blur(12px) saturate(120%);
  }

  .checkout-provider {
    background:
      radial-gradient(circle at 90% 0, rgba(99, 91, 255, 0.35), transparent 48%),
      var(--glass-dark);
    border-color: var(--glass-border-dark);
    box-shadow:
      0 22px 48px rgba(17, 23, 43, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
  }

  .steps-grid {
    gap: 10px;
  }

  .steps-grid li {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--glass-border-light);
    border-radius: 17px;
    box-shadow:
      0 14px 36px rgba(35, 28, 110, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    backdrop-filter: blur(16px) saturate(130%);
  }

  .steps-grid li:hover {
    background: rgba(255, 255, 255, 0.86);
  }

  .steps-grid li + li,
  .steps-grid li:first-child,
  .steps-grid li:last-child {
    border: 1px solid var(--glass-border-light);
    border-radius: 17px;
  }

  .custom-template-card {
    background: var(--glass-light-strong);
    border-color: var(--glass-border-light);
    box-shadow:
      0 15px 38px rgba(35, 28, 110, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 0 0 1px rgba(99, 91, 255, 0.12);
    -webkit-backdrop-filter: blur(16px) saturate(132%);
    backdrop-filter: blur(16px) saturate(132%);
  }



  .cta-card {
    background:
      radial-gradient(circle at 88% 46%, rgba(99, 91, 255, 0.44), transparent 36%),
      radial-gradient(circle at 12% 92%, rgba(189, 253, 62, 0.12), transparent 32%),
      var(--glass-dark-strong);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 32px 84px rgba(17, 23, 43, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    backdrop-filter: blur(20px) saturate(130%);
  }

  .cta-pillars li,
  .button-ghost {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

/* Mobile recebe vidro mais opaco e blur menor para reduzir o custo de pintura. */
@media (max-width: 760px) {
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .cookie-consent-panel {
      background: rgba(255, 255, 255, 0.9);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
      backdrop-filter: blur(10px) saturate(120%);
    }

    .site-header {
      background: transparent;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }

    .site-header::before {
      background: rgba(255, 255, 255, 0.84);
      -webkit-backdrop-filter: blur(10px) saturate(125%);
      backdrop-filter: blur(10px) saturate(125%);
    }

    .mobile-nav {
      background: rgba(255, 255, 255, 0.92);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
      backdrop-filter: blur(10px) saturate(120%);
    }

    .value-strip-inner,
    .benefit-card,
    .template-comparison-card,
    .audience-cards article,
    .accordion details,
    .faq-support,
    .custom-template-card {
      background: rgba(255, 255, 255, 0.82);
      -webkit-backdrop-filter: blur(10px) saturate(118%);
      backdrop-filter: blur(10px) saturate(118%);
    }

      .platform-features > li,
      .checkout-provider,
      .checkout-demo-label,
      .cta-card {
      -webkit-backdrop-filter: blur(9px) saturate(115%);
      backdrop-filter: blur(9px) saturate(115%);
    }

  }
}

@media (prefers-reduced-transparency: reduce) {
  .cookie-consent-panel,
      .mobile-nav,
      .header-login,
      .button-secondary,
      .footer-login,
      .menu-toggle,
      .value-strip-inner,
      .benefit-card,
      .template-comparison-card,
      .audience-cards article,
      .accordion details,
      .faq-support,
      .custom-template-card,
      .steps-grid li {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header::before {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .platform-features > li,
  .checkout-provider,
  .cta-card {
    background: #11172b;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (max-width: 980px) {
  .cookie-consent-panel {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .cookie-consent-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .cookie-consent-icon-art {
    width: 61px;
    height: 61px;
  }

  .cookie-consent-actions {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .cookie-consent {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }

  .cookie-consent-panel {
    padding: 16px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    border-radius: 20px;
  }

  .cookie-consent-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .cookie-consent-icon-art {
    width: 52px;
    height: 52px;
  }

  .cookie-consent-heading h2 {
    font-size: 1rem;
  }

  .cookie-consent-copy > p {
    margin-top: 5px;
    font-size: 0.75rem;
    line-height: 1.48;
  }

  .cookie-preferences {
    margin-top: 3px;
  }

  .cookie-preferences ul {
    grid-column: 1 / -1;
  }

  .cookie-preferences li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .cookie-consent-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .cookie-choice {
    min-height: 46px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 18px;
  }

  .hero-device-visual {
    width: 100%;
    max-width: 790px;
    margin: -15px 0 -12px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
  }

  .hero-points {
    flex-wrap: wrap;
  }

  .benefit-showcase {
    grid-template-columns: 1fr;
  }

  .benefit-story {
    min-height: 620px;
  }

  .benefit-card {
    grid-template-columns: 82px minmax(0, 1fr) minmax(170px, 0.72fr) 165px;
    min-height: 190px;
  }

  .benefit-preview {
    width: 165px;
  }

  .platform-grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 38px;
  }
}

@media (min-width: 1121px) and (max-width: 1279px) {
  .benefit-showcase {
    grid-template-columns: 1fr;
  }

  .benefit-story {
    min-height: 560px;
  }

  .benefit-card {
    grid-template-columns: 82px minmax(0, 1fr) minmax(170px, 0.72fr) 165px;
    min-height: 188px;
    padding: 24px;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .hero-grid {
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    gap: 14px;
  }

  .hero-device-visual {
    width: 100%;
    max-width: 820px;
    margin: -12px 0 -10px;
  }

  .hero-device-rays {
    right: 20px;
  }
}

@media (min-width: 1181px) and (max-width: 1439px) and (max-height: 820px) {
  .hero {
    min-height: 0;
    padding: 110px 0 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
    gap: 14px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-lead {
    margin: 20px 0 18px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions .button {
    min-height: 50px;
  }

  .hero-points {
    margin-top: 16px;
  }

  .hero-device-visual {
    max-width: 780px;
    margin-top: -8px;
  }

  .value-strip {
    margin-top: 6px;
  }

  .value-strip-inner {
    min-height: 112px;
    padding-block: 14px;
  }

  .value-item {
    min-height: 68px;
  }
}

@media (min-width: 900px) and (max-width: 1180px) and (max-height: 820px) and (orientation: landscape) {
  .hero.section-shell {
    min-height: 0;
    padding: 106px 0 16px;
  }

  .hero .hero-grid {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .hero .hero-copy {
    max-width: none;
    margin: 0;
    padding-top: 0;
    text-align: left;
  }

  .hero-copy .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1,
  .hero-lead {
    margin-inline: 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-lead {
    max-width: 410px;
    margin: 14px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 48px;
    padding-inline: 12px;
    flex: 1 1 0;
    font-size: 0.8rem;
  }

  .hero-points {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 12px;
    gap: 5px 9px;
    font-size: 0.66rem;
  }

  .hero .hero-device-visual {
    width: 100%;
    max-width: 560px;
    margin: 38px 0 0;
  }

  .value-strip {
    margin-top: 6px;
  }

  .hero .value-strip-inner {
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 104px;
    padding: 12px 14px;
    gap: 10px;
  }

  .hero .value-strip-copy {
    padding: 0 12px 0 0;
    border-right: 1px solid rgba(99, 91, 255, 0.13);
    border-bottom: 0;
  }

  .value-strip-eyebrow {
    margin-bottom: 4px;
    font-size: 0.58rem;
  }

  .value-strip h2 {
    font-size: 0.96rem;
  }

  .value-strip-copy p {
    margin-top: 3px;
    font-size: 0.68rem;
    line-height: 1.32;
  }

  .hero .value-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .hero .value-item {
    align-items: center;
    min-height: 62px;
    padding: 4px;
    gap: 3px;
    flex-direction: row;
  }

  .value-item-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .value-item-copy strong {
    font-size: 0.8rem;
  }
}

/* Com o respiro lateral maior, marca, navegação e ações só cabem lado a lado
   até 1439px se o header compactar. */
@media (min-width: 1181px) and (max-width: 1439px) {
  .desktop-nav {
    left: 42.5%;
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.88rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-login {
    width: 126px;
    min-width: 126px;
    padding-inline: 12px;
  }

  .header-cta.button-small {
    min-width: 158px;
    padding-inline: 14px;
  }
}

/* Abaixo de 1340px o respiro lateral já é 54px e "Seu crescimento", que não
   quebra linha, não cabe mais na coluna do item. */
@media (min-width: 1181px) and (max-width: 1339px) {
  .value-item-copy strong {
    font-size: 0.84rem;
    letter-spacing: -0.03em;
  }
}

@media (min-width: 1181px) and (max-width: 1280px) {
  /* O CTA preserva a proporcao original. Neste intervalo minimo de desktop,
     a navegacao encurta apenas os espacos para nao invadir os dois botoes. */
  .desktop-nav {
    left: 35%;
    gap: 10px;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

  .platform-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 26px;
  }

  .platform-copy {
    max-width: none;
  }

  .platform-devices {
    width: 100%;
    max-width: 620px;
  }
}

/* ==========================================================================
   Respiro lateral em desktop e notebook
   O container acompanha a largura da tela em degraus, para o conteúdo nunca
   encostar na borda física do notebook.
   ========================================================================== */

@media (min-width: 1181px) {
  :root {
    --page-gutter: 54px;
  }
}

@media (min-width: 1340px) {
  :root {
    --page-gutter: 70px;
  }
}

@media (min-width: 1560px) {
  :root {
    --page-gutter: 82px;
  }
}

@media (min-width: 1760px) {
  :root {
    --page-gutter: 96px;
  }
}

/* ==========================================================================
   Ritmo vertical por altura de viewport
   Notebooks têm largura de desktop e altura curta: sem estes degraus o
   miolo de cada tópico nasce abaixo da dobra e os cards chegam cortados.
   ========================================================================== */

@media (min-width: 1181px) and (max-height: 1000px) {
  :root {
    --section-space: 88px;
    --heading-space: 42px;
    --header-height: 86px;
  }

  .section-heading.centered > p {
    margin-top: 15px;
  }

  .benefit-story {
    min-height: 560px;
  }

  .benefit-card {
    min-height: 176px;
    padding: 20px;
  }

  .benefit-journey {
    gap: 14px;
  }

  .audience-grid {
    gap: 62px;
  }

  .faq-artwork {
    width: min(320px, 66%);
    margin-block: 18px 2px;
  }

  .cta-card {
    min-height: 340px;
    padding: 58px 60px;
  }
}

@media (min-width: 1181px) and (max-height: 860px) {
  :root {
    --section-space: 72px;
    --heading-space: 34px;
    --header-height: 80px;
  }

  .section-heading h2,
  .platform-copy h2,
  .split-heading h2,
  .audience-copy h2,
  .checkout-copy h2,
  .faq-aside h2,
  .cta-content h2 {
    font-size: clamp(2rem, 2.9vw, 2.7rem);
  }

  .section-heading > p,
  .split-heading > p,
  .platform-copy > p,
  .audience-copy > p,
  .faq-aside > p,
  .cta-content > p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  /* Benefícios: a foto e os três cards passam a caber juntos na tela. */
  .benefit-showcase {
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: 18px;
  }

  .benefit-story {
    min-height: 448px;
  }

  .benefit-card {
    grid-template-columns: 62px minmax(140px, 1fr) minmax(120px, 0.7fr) 132px;
    min-height: 140px;
    padding: 18px;
    gap: 14px;
  }

  .benefit-card-copy h3 {
    font-size: 1.26rem;
  }

  .benefit-card-copy p {
    margin-top: 8px;
    font-size: 0.83rem;
  }

  .benefit-card ul {
    gap: 7px;
  }

  .benefit-index {
    gap: 11px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
  }

  /* A arte define a altura do card: encolhê-la é o que faz os três caberem. */
  .benefit-preview {
    width: 118px;
  }

  /* Plataforma */
  .platform-features > li {
    min-height: 70px;
    padding: 10px 12px;
  }

  .platform-copy > p {
    margin-block: 16px 22px;
  }

  /* Checkout */
  .checkout-flow {
    margin-top: 20px;
  }

  .checkout-copy > p[data-checkout-lead] {
    margin-top: 16px;
  }

  /* Etapas */
  .steps-grid li {
    padding: 24px 20px 22px;
  }

  .step-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  /* Templates: cabeçalho mais enxuto e preview levemente recortado, para os
     três cards da galeria chegarem inteiros na dobra. */
  .templates .section-heading {
    margin-bottom: 26px;
  }

  .templates .section-heading h2 {
    font-size: clamp(1.95rem, 2.6vw, 2.45rem);
  }



  .template-comparison {
    gap: 18px;
  }

  .custom-template-card {
    margin-top: 16px;
    padding: 15px 20px;
  }

  .template-note {
    margin-top: 18px;
  }

  /* Público */
  .audience-grid {
    gap: 52px;
  }

  .audience-cards article {
    padding: 16px 20px;
  }

  .audience-icon {
    width: 56px;
    height: 56px;
  }

  /* Dúvidas */
  .faq-grid {
    gap: clamp(40px, 3.6vw, 62px);
  }

  .faq-artwork {
    width: min(260px, 56%);
    margin-block: 14px 0;
  }

  .faq-reassurance-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 7px;
  }

  .faq-reassurance-icon img {
    width: 44px;
    height: 44px;
  }

  .accordion {
    gap: 9px;
  }

  .accordion summary {
    min-height: 70px;
    padding: 14px 19px 14px 22px;
    font-size: 1rem;
  }

  .accordion details p {
    padding: 0 80px 21px 22px;
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .faq-content {
    gap: 18px;
  }

  .faq-support {
    padding: 15px 18px;
  }

  /* CTA final */
  .cta-card {
    min-height: 300px;
    padding: 48px 54px;
  }

  .cta-content > p {
    margin-block: 15px 22px;
  }
}

/* Notebook 1366×768 e janelas igualmente baixas: último degrau de compactação,
   para o miolo de cada tópico caber na dobra sem card cortado ao meio. */
@media (min-width: 1181px) and (max-height: 800px) {
  :root {
    --section-space: 56px;
    --heading-space: 26px;
    --header-height: 74px;
  }

  .section-heading h2,
  .platform-copy h2,
  .split-heading h2,
  .audience-copy h2,
  .checkout-copy h2,
  .faq-aside h2,
  .cta-content h2 {
    font-size: clamp(1.85rem, 2.55vw, 2.4rem);
  }

  .section-heading.centered > p {
    margin-top: 12px;
  }

  .eyebrow {
    margin-bottom: 13px;
  }

  /* Hero: a dobra fecha na faixa de operação, sem sobra. */
  .hero {
    min-height: 0;
    padding: calc(var(--header-height) + 24px) 0 14px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-lead {
    margin: 16px 0 14px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions .button {
    min-height: 48px;
  }

  .hero-points {
    margin-top: 13px;
  }

  .hero-device-visual {
    margin-top: -6px;
  }

  .value-strip-inner {
    min-height: 104px;
    padding-block: 12px;
  }

  .value-item {
    min-height: 64px;
  }

  /* Benefícios */
  .benefit-story {
    min-height: 398px;
  }

  .benefit-card {
    min-height: 124px;
    padding: 14px 16px;
  }

  .benefit-journey {
    gap: 11px;
  }

  .benefit-card-copy h3 {
    font-size: 1.15rem;
  }

  .benefit-card-copy p {
    margin-top: 8px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .benefit-preview {
    width: 98px;
  }

  /* Templates: o cabeçalho encolhe e o preview recorta mais alto, para que os
     três cards da galeria apareçam inteiros ao chegar na seção. */
  .templates .section-heading {
    margin-bottom: 20px;
  }

  .templates .section-heading h2 {
    font-size: 1.95rem;
  }



  /* A galeria atual usa cards comparativos com as duas resoluções. */
  .template-comparison-heading {
    margin-bottom: 12px;
  }

  .template-comparison-card {
    padding: 7px 7px 11px;
  }

  .template-comparison-stage {
    aspect-ratio: 16 / 9;
    padding: 12px 34px 12px 12px;
  }

  .template-comparison-copy {
    padding-top: 9px;
  }



  .template-card {
    padding: 8px 8px 12px;
  }



  .custom-template-card {
    margin-top: 13px;
    padding: 12px 18px;
  }

  .template-note {
    margin-top: 14px;
  }

  /* Checkout */
  .checkout-flow > li {
    min-height: 60px;
    padding: 8px 0;
  }

  .checkout-provider {
    padding-block: 14px;
  }

  /* Dúvidas: seis respostas fechadas cabem junto do CTA de apoio. */
  .faq-artwork {
    width: min(215px, 48%);
    margin-block: 10px 0;
  }

  .accordion {
    gap: 7px;
  }

  .accordion summary {
    min-height: 62px;
    padding: 12px 18px 12px 20px;
    font-size: 0.97rem;
  }

  .accordion details p {
    padding: 0 74px 18px 20px;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .faq-content {
    gap: 14px;
  }

  .faq-support {
    padding: 13px 16px;
  }

  /* CTA final */
  .cta-card {
    min-height: 0;
    padding: 40px 46px;
  }
}

/* Hero em notebook largo: a dobra precisa terminar na faixa de operação.
   Abaixo de 1440px o ajuste já vem do bloco 1181–1439. */
@media (min-width: 1440px) and (max-height: 940px) {
  .hero {
    min-height: 0;
    padding-bottom: 16px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 3.3vw, 3.85rem);
  }

  .hero-lead {
    margin: 19px 0 17px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions .button {
    min-height: 50px;
  }

  .hero-points {
    margin-top: 15px;
  }

  .hero-device-visual {
    max-width: 840px;
    margin-top: -8px;
  }

  .value-strip {
    margin-top: 6px;
  }

  .value-strip-inner {
    min-height: 112px;
    padding-block: 14px;
  }

  .value-item {
    min-height: 68px;
  }

}

/* Desktop e notebook: o telefone acompanha o conjunto visual sem tocar a
   transicao clara que encerra a secao. Tablet e mobile mantem sua composicao. */
@media (min-width: 1181px) {
  .platform-device-phone {
    bottom: 8%;
  }
}

/* Em desktop a primeira tela mede exatamente uma dobra: o miolo da hero se
   centra no espaço livre e a faixa de operação encosta na base, para não
   sobrar vazio embaixo em monitor alto nem cortar em notebook baixo. */
@media (min-width: 1181px) {
  .hero {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  .hero-grid {
    align-content: center;
    flex: 1 0 auto;
  }

  .value-strip {
    margin-top: auto;
    padding-top: 10px;
  }
}

@media (max-width: 1180px) {
  :root {
    --section-space: 90px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    padding: 26px 20px 40px;
    overflow-y: auto;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    flex-direction: column;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-menu[open] .mobile-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 13px 8px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-nav > .mobile-login {
    display: grid;
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    padding: 0 20px;
    margin-top: 12px;
    grid-template-columns: 19px minmax(0, 1fr) 16px;
    gap: 8px;
    color: var(--brand);
    border: 1px solid rgba(99, 91, 255, 0.28);
    border-radius: 12px;
    font-size: 0.86rem;
    line-height: 1;
    text-align: center;
  }

  .mobile-nav .button {
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    padding: 0 20px;
    margin-top: 10px;
    grid-template-columns: 19px minmax(0, 1fr) 16px;
    border-radius: 11px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 135px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-device-visual {
    width: min(100%, 840px);
    max-width: 100%;
    margin: -4px auto -24px;
  }

  .hero-device-rays {
    right: 3%;
  }

  .value-strip-inner {
    grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.5fr);
    padding: 20px;
    gap: 20px;
  }

  .value-items {
    gap: 6px;
  }

  .value-strip-copy {
    padding-right: 20px;
  }

  .platform-grid,
  .audience-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 55px;
  }

  .platform-copy {
    max-width: 700px;
  }

  .platform-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-devices {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .checkout-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 760px;
    order: 2;
  }

  .checkout-showcase {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    transform: none;
  }

  .checkout-visual {
    width: min(820px, 100%);
    min-height: 560px;
    margin-inline: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .steps-grid li:first-child {
    border-radius: 16px 0 0;
  }

  .steps-grid li:nth-child(2) {
    border-right: 1px solid var(--line);
    border-radius: 0 16px 0 0;
  }

  .steps-grid li:nth-child(3) {
    border-top: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 0 0 16px;
  }

  .steps-grid li:last-child {
    border-top: 0;
    border-radius: 0 0 16px;
  }



  .benefit-journey {
    gap: 15px;
  }

  .benefit-card {
    min-height: 188px;
    padding: 25px;
  }

  .audience-copy {
    max-width: 680px;
  }

  .faq-aside {
    max-width: 820px;
    margin-inline: auto;
  }

  .faq-aside > p {
    max-width: 620px;
  }

  .faq-artwork {
    width: min(320px, 52vw);
    margin-top: 16px;
  }

  .faq-content {
    width: 100%;
  }

}

@media (min-width: 1181px) and (max-width: 1280px) {
  .faq-grid {
    grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1.38fr);
    gap: 28px;
  }

  .faq-aside {
    max-width: none;
    margin-inline: 0;
  }

  .faq-aside > p {
    max-width: 34ch;
  }

  .faq-artwork {
    width: min(210px, 66%);
    margin-top: 12px;
  }
}

@media (max-width: 1120px) {
  .value-strip-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 22px;
    gap: 18px;
  }

  .value-strip-copy {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(99, 91, 255, 0.13);
  }

  .value-items {
    gap: 10px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .platform,
  .faq,
  .checkout {
    padding-block: 72px;
  }

  .platform-grid {
    gap: 28px;
  }

  .platform-devices {
    max-width: 680px;
  }

  .benefit-story {
    min-height: 520px;
  }

  .faq-grid {
    gap: 32px;
  }

  .faq-aside {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
    column-gap: 28px;
  }

  .faq-aside > .eyebrow,
  .faq-aside > h2,
  .faq-aside > p {
    grid-column: 1;
  }

  .faq-artwork {
    width: 210px;
    margin: 0;
    grid-column: 2;
    grid-row: 1 / 5;
  }

  .faq-reassurance {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 20px;
    --section-space: 62px;
    --heading-space: 30px;
    --header-height: 72px;
  }

  .header-inner,
  .hero-grid {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: 126px;
  }

  .mobile-nav {
    top: var(--header-height);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 26px) 0 20px;
    background-size: 38px 38px, 38px 38px, auto, auto;
  }

  .hero-grid {
    gap: 0;
  }

  /* A foto entra entre a promessa e os botões: é o produto que a pessoa
     precisa ver antes de decidir clicar, e no fim da coluna ela só chegava
     depois da decisão.
     Para intercalar, a coluna de texto deixa de ser uma caixa — display:
     contents — e seus filhos viram itens da grade, cada um com a sua ordem.
     A leitura do HTML continua a mesma. */
  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
  }

  .hero-lead {
    order: 3;
  }

  .hero-device-visual {
    order: 4;
  }

  .hero-actions {
    order: 5;
  }

  .hero-points {
    order: 6;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.7vw, 2.8rem);
  }

  .hero-lead {
    margin: 18px 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Largura total: lado a lado, "Ver como funciona" quebra em duas linhas
     nos 335px de container. */
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 50px;
    flex: 1 1 100%;
  }

  .hero-points {
    justify-content: center;
    margin-top: 18px;
    gap: 9px 16px;
  }

  .hero-device-visual {
    width: min(100%, 390px);
    max-width: 100%;
    margin: -6px auto 6px;
  }

  .hero-device-rays {
    top: 14%;
    right: 4%;
    transform: scale(0.82);
    transform-origin: center;
  }

  .hero-brand-pixel-lime {
    top: 23%;
    left: 4%;
    width: 23px;
  }

  .hero-brand-pixel-purple {
    top: 4%;
    right: 20%;
    width: 18px;
  }

  .hero-brand-pixel-navy {
    right: 2%;
    bottom: 18%;
    width: 17px;
  }

  .checkout-grid {
    gap: 26px;
  }

  .checkout-copy h2 {
    font-size: clamp(1.75rem, 7.7vw, 3rem);
  }

  .checkout-copy > p[data-checkout-lead] {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .checkout-flow {
    margin-top: 22px;
  }

  .checkout-provider {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 12px 14px 12px 10px;
    border-radius: 17px;
  }

  .checkout-provider-icon {
    width: 62px;
    height: 62px;
  }

  .checkout-visual {
    width: 100%;
    min-height: 440px;
    padding: 34px 35px 47px 0;
  }

  .checkout-browser {
    border-radius: 19px;
    transform: none;
  }

  .checkout-browser-bar {
    height: 31px;
  }

  .checkout-screen {
    padding: 15px 14px 17px;
  }

  .checkout-screen-grid {
    grid-template-columns: 1fr;
  }

  .checkout-order-panel {
    display: none;
  }

  .checkout-payment-panel {
    padding: 12px;
  }

  .checkout-phone {
    right: 5px;
    bottom: 24px;
    width: 39%;
    min-width: 150px;
    border-width: 6px;
    border-radius: 26px;
  }

  .checkout-float-status {
    top: 11px;
    right: 7%;
  }

  .checkout-float-security {
    bottom: 12px;
    left: 2%;
  }

  .value-strip {
    margin-top: 14px;
    padding: 0;
  }

  .value-strip::before {
    left: -70px;
    width: 260px;
  }

  .value-strip-inner {
    min-height: 0;
    padding: 13px 12px 12px;
    gap: 9px;
    border-radius: 18px;
  }

  .value-strip-copy {
    padding: 0 0 9px;
  }

  .value-strip-eyebrow {
    margin-bottom: 5px;
    font-size: 0.58rem;
  }

  .value-strip h2 {
    font-size: 1rem;
    white-space: normal;
  }

  .value-strip-copy p {
    display: none;
  }

  .value-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .value-item {
    display: grid;
    min-height: 72px;
    padding: 5px 2px;
    place-items: center;
    align-content: center;
    gap: 2px;
  }

  .value-item-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .value-item-copy {
    width: 100%;
    text-align: center;
  }

  .value-item-copy strong {
    font-size: clamp(0.62rem, 2.8vw, 0.72rem);
    line-height: 1.2;
    white-space: normal;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .platform-copy h2,
  .split-heading h2,
  .audience-copy h2,
  .faq-aside h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .faq-aside h2 span {
    white-space: normal;
  }



  .template-comparison-heading {
    display: grid;
    margin-bottom: 14px;
    gap: 7px;
  }

  .template-comparison-heading p {
    font-size: 0.8rem;
    text-align: left;
  }

  .template-comparison-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .template-comparison-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(104px, 0.65fr);
    align-items: center;
    padding: 7px;
    border-radius: 16px;
  }

  .template-comparison-stage {
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 13px 32px 13px 13px;
    border-radius: 11px;
  }

  .template-comparison-mobile {
    right: 6px;
    bottom: 8px;
    width: 54px;
    padding: 3px;
    border-radius: 11px;
  }

  .template-comparison-mobile > span {
    top: 5px;
    height: 4px;
  }

  .template-comparison-copy {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    padding: 10px 9px;
  }

  .template-comparison-copy > span {
    font-size: 0.57rem;
  }

  .template-comparison-copy > strong {
    font-size: 0.96rem;
  }

  .template-comparison-copy > small {
    font-size: 0.67rem;
  }



  .template-card {
    padding: 4px 4px 9px;
    border-radius: 13px;
  }



  .template-window-bar {
    height: 19px;
    padding: 0 5px;
  }

  .template-window-bar > i {
    width: 3px;
    height: 3px;
    box-shadow: 5px 0 #d8dae4, 10px 0 #e4e5eb;
  }

  .template-window-bar > b,
  .template-window-bar > em {
    display: none;
  }



  .custom-template-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 20px;
  }

  .custom-template-cta {
    width: 100%;
    grid-column: 1 / -1;
  }

  /* 560px de altura em 335px de largura deixava a foto quase o dobro de alta
     que larga e empurrava os três cards para muito longe da dobra. */
  .benefit-story {
    min-height: 366px;
  }

  .benefit-card {
    grid-template-areas:
      "index copy"
      "index list"
      "preview preview";
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    min-height: auto;
    padding: 23px;
    gap: 12px 18px;
  }

  .benefit-index {
    grid-area: index;
    align-self: start;
    align-content: start;
    gap: 13px;
  }

  .benefit-card-copy {
    grid-area: copy;
  }

  .benefit-card-copy h3 {
    font-size: 1.35rem;
  }

  .benefit-card-copy p {
    font-size: 0.94rem;
  }

  .benefit-card ul {
    grid-area: list;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3px;
    gap: 8px 12px;
  }

  .benefit-card li {
    align-items: flex-start;
    font-size: 0.84rem;
  }

  .benefit-card li::before {
    margin-top: 4px;
    flex: 0 0 auto;
  }

  .benefit-preview {
    display: block;
    width: min(148px, 46vw);
    margin-top: 2px;
    grid-area: preview;
    justify-self: center;
  }

  .platform-features {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .platform-features > li {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 64px;
    padding: 9px 11px;
    gap: 10px;
  }

  .platform-features > li > span {
    width: 46px;
    height: 46px;
  }

  .platform-features strong {
    font-size: 0.88rem;
  }

  .platform-features small {
    font-size: 0.74rem;
  }

  .platform-grid {
    gap: 22px;
  }

  /* Assim como na Hero, a demonstração dos dispositivos apresenta o tópico
     antes da lista de recursos nas telas menores. */
  .platform-copy {
    order: 2;
  }

  .platform-devices {
    order: 1;
    width: min(100%, 640px);
    margin-bottom: 2px;
    margin-inline: auto;
  }

  .brand-pixel-lime {
    width: 27px;
    height: 27px;
  }

  .brand-pixel-lavender,
  .brand-pixel-purple {
    width: 21px;
    height: 21px;
  }

  .brand-pixel-laptop-lime {
    width: 24px;
    height: 24px;
  }

  .brand-pixel-laptop-lavender {
    width: 19px;
    height: 19px;
  }

  .brand-pixel-laptop-purple {
    width: 21px;
    height: 21px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Ícone ao lado do texto: empilhado, cada etapa passava de 200px e as
     quatro juntas dominavam a seção inteira. */
  .steps-grid li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
    padding: 20px 18px;
    gap: 8px 14px;
  }

  .step-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    grid-row: span 2;
  }

  /* padding-right reserva a coluna do número, que é posicionado em absoluto. */
  .steps-grid h3 {
    align-self: center;
    margin-bottom: 0;
    padding-right: 30px;
  }

  .step-number {
    top: 14px;
    right: 15px;
  }

  .steps-grid li,
  .steps-grid li:first-child,
  .steps-grid li:nth-child(2),
  .steps-grid li:nth-child(3),
  .steps-grid li:last-child {
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
  }

  .steps-grid li:first-child {
    border-radius: 16px;
  }

  .steps-grid li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
  }

  .audience-grid,
  .faq-grid {
    gap: 45px;
  }

  .faq-aside {
    width: 100%;
  }

  .faq-aside > p {
    margin-top: 19px;
    font-size: 0.94rem;
  }

  .faq-artwork {
    width: min(190px, 56vw);
    margin-block: 13px 2px;
  }

  .faq-reassurance {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  .faq-reassurance li {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    padding: 9px 11px;
    column-gap: 11px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(99, 91, 255, 0.1);
    border-radius: 13px;
  }

  .faq-reassurance-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .faq-reassurance-icon img {
    width: 43px;
    height: 43px;
  }

  .faq-reassurance strong {
    min-height: 0;
    font-size: 0.8rem;
  }

  .faq-reassurance small {
    margin: -1px 0 0;
    font-size: 0.73rem;
  }

  .audience-cards article {
    grid-template-columns: 56px 1fr;
    padding: 18px;
    gap: 13px;
  }

  .audience-icon {
    width: 56px;
    height: 56px;
  }

  .audience-cards article:hover {
    transform: translateY(-3px);
  }

  .accordion summary {
    align-items: flex-start;
    min-height: 70px;
    padding: 14px 16px;
    gap: 12px;
    font-size: 0.95rem;
  }

  .faq-summary-action i {
    width: 32px;
    height: 32px;
    margin-top: -2px;
  }

  .faq-summary-action i::before,
  .faq-summary-action i::after {
    top: 15px;
    left: 9px;
  }

  .accordion details p {
    padding: 0 54px 20px 16px;
    font-size: 0.88rem;
  }

  .faq-support {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 17px;
    gap: 13px;
  }

  .faq-support-cta {
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
  }

  .final-cta {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .cta-card {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 42px 24px;
    gap: 28px;
    border-radius: 22px;
  }

  .cta-pillars li {
    padding: 12px 14px;
    gap: 13px;
  }

  .cta-content h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-pixels {
    left: 20px;
    bottom: 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    gap: 40px;
  }

  .footer-links {
    gap: 56px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-end {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .eyebrow {
    gap: 7px;
    padding-right: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .eyebrow-icon {
    width: 24px;
    height: 24px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.45vw, 2.08rem);
    letter-spacing: -0.055em;
  }

  /* Escala específica para manter os títulos de seção em até duas linhas. */
  .section-heading h2,
  .platform-copy h2,
  .split-heading h2,
  .audience-copy h2,
  .faq-aside h2,
  .cta-content h2 {
    font-size: clamp(1.68rem, 7.4vw, 1.95rem);
    line-height: 1.12;
  }

  .checkout-copy h2 {
    font-size: clamp(1.48rem, 6.8vw, 1.75rem);
    line-height: 1.12;
  }

  .checkout-title-line {
    white-space: normal;
  }

  /* Este texto foi mantido integralmente por decisão de identidade. */
  .templates .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.38rem, 6.4vw, 1.7rem);
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-device-visual {
    width: min(100%, 350px);
    max-width: 100%;
    margin: -10px auto 2px;
  }

  .hero-device-rays {
    right: 5%;
    transform: scale(0.7);
  }

  .hero-brand-pixel-lime {
    top: 22%;
    left: 3%;
    width: 19px;
  }

  .hero-brand-pixel-purple {
    top: 3%;
    right: 21%;
    width: 15px;
  }

  .hero-brand-pixel-navy {
    right: 1%;
    bottom: 17%;
    width: 14px;
  }

  /* Título pode ocupar duas linhas sem invadir o número da etapa. */
  .steps-grid li {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px;
    gap: 8px 12px;
  }

  .step-icon {
    width: 46px;
    height: 46px;
  }

  .steps-grid h3 {
    padding-right: 24px;
    font-size: 1rem;
    line-height: 1.28;
    white-space: normal;
    text-wrap: balance;
  }

  .benefit-story {
    min-height: 330px;
  }

  .benefit-card {
    grid-template-areas: "index copy";
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    min-height: 128px;
    padding: 17px;
    gap: 10px 13px;
  }

  .benefit-index {
    align-self: center;
  }

  .benefit-index > span {
    font-size: 1.45rem;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
  }

  .benefit-card-copy h3 {
    font-size: 1.22rem;
  }

  .benefit-card ul {
    display: none;
  }

  .benefit-preview {
    display: none;
  }

  .template-comparison-heading p {
    max-width: 29ch;
  }

  .final-cta {
    padding-block: 54px;
  }

  .cta-card {
    padding: 30px 18px 22px;
    gap: 20px;
    border-radius: 19px;
  }

  .cta-content > p {
    margin: 12px 0 18px;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cta-actions .button {
    min-width: 0;
    min-height: 46px;
    padding-inline: 8px;
    gap: 5px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .cta-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .cta-pillars li {
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 9px 4px;
    gap: 4px;
    text-align: center;
  }

  .cta-pillar-icon {
    width: 42px;
    height: 42px;
    margin-inline: auto;
  }

  .cta-pillars strong {
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.2;
    text-overflow: clip;
    white-space: normal;
    text-wrap: balance;
  }

  .cta-pillars small {
    display: none;
  }

  .checkout-flow > li {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 68px;
    gap: 11px;
  }

  .checkout-flow > li > span {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .checkout-flow small {
    font-size: 0.73rem;
  }

  .checkout-provider {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 9px;
  }

  .checkout-provider-icon {
    width: 54px;
    height: 54px;
  }

  .checkout-provider h3 {
    font-size: 0.84rem;
  }

  .checkout-methods {
    margin-top: 7px;
    gap: 4px;
  }

  .checkout-methods li {
    padding-inline: 7px;
    font-size: 0.6rem;
  }

  .checkout-visual {
    min-height: 350px;
    padding: 28px 23px 37px 0;
  }

  .checkout-browser-bar {
    height: 27px;
  }

  .checkout-screen {
    padding: 12px 10px 13px;
  }

  .checkout-screen-progress,
  .checkout-screen-secure {
    display: none;
  }

  .checkout-screen-grid {
    margin-top: 12px;
  }

  .checkout-payment-option {
    min-height: 42px;
    padding: 6px 7px;
  }

  .checkout-phone {
    right: 6px;
    bottom: 16px;
    width: 42%;
    min-width: 124px;
    padding: 22px 8px 10px;
    border-width: 5px;
    border-radius: 22px;
  }

  .checkout-phone-summary {
    padding: 6px;
  }

  .checkout-phone-summary > i {
    width: 25px;
    height: 25px;
  }

  .checkout-phone-summary > b,
  .checkout-phone-summary small {
    display: none;
  }

  .checkout-phone-method {
    min-height: 33px;
    margin-top: 6px;
    padding: 4px 5px;
  }

  .checkout-phone-method > i {
    width: 21px;
    height: 21px;
  }

  .checkout-phone-button {
    min-height: 29px;
    margin-top: 7px;
  }

  .checkout-float-chip {
    padding: 6px 8px;
    font-size: 0.54rem;
  }

  .checkout-float-status {
    top: 6px;
  }

  .checkout-float-security {
    display: none;
  }

  .checkout-brand-pixels i:nth-child(1) {
    left: 1%;
    width: 23px;
    height: 23px;
  }

  .checkout-brand-pixels i:nth-child(2) {
    right: 0;
    width: 17px;
    height: 17px;
  }

  .template-note {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    gap: 26px;
  }

  .footer-actions {
    gap: 10px;
  }

  .footer-actions > * {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .section {
    padding-block: 60px;
  }

  .custom-template-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero h1 {
    max-width: 285px;
    margin-inline: auto;
    font-size: clamp(1.5rem, 8vw, 1.62rem);
  }

  .benefit-story {
    min-height: 300px;
  }

  .benefit-card {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 118px;
    padding: 14px 13px;
    gap: 9px 10px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-card-copy h3 {
    font-size: 1.08rem;
  }

  .benefit-card-copy p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .steps-grid li {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px 13px;
    gap: 7px 10px;
  }

  .step-icon {
    width: 42px;
    height: 42px;
  }

  .steps-grid h3 {
    padding-right: 25px;
    font-size: 0.92rem;
  }

  .steps-grid p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .template-comparison-stage {
    padding: 8px 52px 8px 8px;
  }

  .template-comparison-mobile {
    right: 6px;
    bottom: 6px;
    width: 45px;
  }

  .template-detail-bar {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .template-detail-bar > span {
    display: none;
  }

  .custom-template-icon {
    width: 48px;
    height: 48px;
  }

  .audience-cards article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 15px 13px;
    gap: 10px;
  }

  .audience-icon {
    width: 48px;
    height: 48px;
  }

  .audience-cards h3 {
    font-size: 0.94rem;
    white-space: normal;
    text-wrap: balance;
  }

  .value-strip h2 {
    font-size: 1.04rem;
  }

  .value-item {
    padding-inline: 1px;
  }

  .value-item-copy strong {
    font-size: 0.59rem;
    letter-spacing: -0.025em;
  }

  .checkout-provider {
    grid-template-columns: 1fr;
  }

  .checkout-provider-icon {
    display: none;
  }

  .checkout-visual {
    min-height: 315px;
    padding-right: 17px;
  }

  .checkout-payment-option small {
    display: none;
  }

  .checkout-phone {
    min-width: 112px;
    right: 7px;
  }
}

/* ===========================================================================
   Comparação de templates em tela estreita
   Em duas colunas a prévia virava uma tira de 88px de altura: não dava para
   comparar estilo nenhum, que é a única razão desta seção existir. Abaixo de
   560px o card volta a ser uma coluna — a prévia ocupa a largura inteira e o
   texto desce para uma linha só, sem quebrar a categoria no meio.
   ========================================================================== */

@media (max-width: 560px) {
  /*
   * A faixa inteira sai do celular, moldura junto.
   *
   * Esconder só o conteúdo deixava um cartão branco vazio entre a hero e a
   * seção seguinte — o que a pessoa via era um defeito, não uma ausência.
   * No desktop ela continua: lá sobra largura para os quatro pilares.
   */
  .value-strip {
    display: none;
  }

  /* O título da seção já diz o que fazer. O par "Visão geral / Compare os
     três estilos" repetia a mesma ideia logo abaixo dele, e eram três
     títulos empilhados antes do primeiro card. */
  .template-comparison-heading {
    display: none;
  }

  .template-comparison-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .template-comparison-card {
    grid-template-columns: 1fr;
    padding: 6px 6px 0;
    border-radius: 18px;
  }

  .template-comparison-card-official {
    grid-template-columns: 1fr;
  }

  .template-comparison-stage {
    height: auto;
    aspect-ratio: 16 / 10;
    padding: 11px 68px 11px 11px;
    border-radius: 13px;
  }

  .template-comparison-mobile {
    right: 9px;
    bottom: 9px;
    width: 58px;
    padding: 3px;
    border-radius: 11px;
  }

  .template-comparison-mobile > span {
    top: 5px;
    height: 4px;
  }

  .template-comparison-copy {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    padding: 9px 6px 10px;
    gap: 1px 10px;
  }

  .template-comparison-copy > span {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .template-comparison-copy > strong {
    font-size: 1.02rem;
  }

  .template-comparison-copy > small {
    font-size: 0.74rem;
  }
}
/* ===========================================================================
   Mobile compacto
   Cada tópico prioriza a altura útil de aparelhos entre 320px e 430px. Não
   há rolagem interna: apenas removemos repetições e reduzimos áreas vazias.
   ========================================================================== */

@media (max-width: 430px) {
  :root {
    --section-space: 42px;
    --heading-space: 18px;
  }

  .eyebrow.eyebrow-soft {
    font-size: 0.75rem;
  }

  .hero {
    padding: calc(var(--header-height) + 12px) 0 10px;
  }

  .hero-grid {
    gap: 0;
  }

  /* Sangra até a borda da tela: é a foto do produto, e margem lateral aqui
     só a faria menor. A ordem vem do degrau de 760px. */
  .hero-device-visual {
    width: calc(100% + (var(--page-gutter) * 2));
    max-width: 430px;
    margin: 4px 0 2px;
    justify-self: center;
  }

  .hero-copy .eyebrow {
    margin-bottom: 15px;
    padding: 6px 12px 6px 6px;
    color: var(--ink);
    background: linear-gradient(135deg, rgba(189, 253, 62, 0.96), rgba(174, 248, 38, 0.9));
    box-shadow: 0 10px 24px rgba(143, 202, 28, 0.18);
    font-size: clamp(0.75rem, 3vw, 0.8rem);
    letter-spacing: 0.055em;
  }

  .hero-copy .eyebrow-icon {
    color: #fff;
    background: var(--ink);
    box-shadow: none;
  }

  .hero-lead {
    max-width: 34ch;
    margin: 14px auto 15px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-inline: 18px;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-actions .button-secondary {
    width: auto;
    min-height: 42px;
    padding-inline: 9px;
    justify-self: center;
    color: var(--brand-dark);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    font-size: 0.86rem;
  }

  .hero-actions .button-secondary:hover {
    color: var(--brand);
    background: rgba(99, 91, 255, 0.06);
    box-shadow: none;
    transform: none;
  }

  .hero-actions .button svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  /* A faixa logo abaixo já resume os diferenciais da Hero. */
  .hero-points {
    display: none;
  }








  .section-heading {
    margin-bottom: 16px;
  }

  /* Benefícios */
  .benefit-showcase,
  .benefit-journey {
    gap: 7px;
  }

  .benefit-story {
    min-height: 145px;
  }

  .benefit-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 80px;
    padding: 8px 10px;
    gap: 5px 8px;
  }

  .benefit-index {
    gap: 3px;
  }

  .benefit-index > span {
    font-size: 0.94rem;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .benefit-card-copy h3 {
    font-size: 0.9rem;
  }

  .benefit-card-copy p {
    margin-top: 2px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  /* Plataforma */
  .platform,
  .checkout,
  .faq {
    padding-block: 42px;
  }

  .platform {
    --flow-dark-exit: 24px;
    padding-bottom: 58px;
  }

  .platform-grid,
  .checkout-grid {
    gap: 14px;
  }

  .platform-devices {
    width: min(100%, 285px);
  }

  .platform-copy > p {
    margin: 10px 0 14px;
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .platform-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .platform-features > li {
    grid-template-columns: minmax(0, 1fr);
    min-height: 82px;
    padding: 7px 5px 8px;
    place-items: center;
    align-content: center;
    gap: 2px;
    text-align: center;
  }

  .platform-features > li > span {
    width: 40px;
    height: 40px;
  }

  .platform-feature-copy {
    width: 100%;
    text-align: center;
  }

  .platform-features strong {
    display: block;
    max-width: 14ch;
    margin-inline: auto;
    font-size: clamp(0.8rem, 3.2vw, 0.86rem);
    line-height: 1.18;
    white-space: normal;
    text-wrap: balance;
  }

  .platform-features small {
    display: none;
  }

  /* Checkout */
  .checkout-visual {
    order: 1;
    min-height: 185px;
    padding: 10px 18px 14px 0;
  }

  .checkout-copy {
    order: 2;
  }

  .checkout-float-chip {
    display: none;
  }

  .checkout-copy > p[data-checkout-lead] {
    margin-top: 9px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .checkout-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 13px;
    gap: 7px;
  }

  .checkout-flow > li {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 82px;
    padding: 8px 5px;
    gap: 6px;
    text-align: center;
    border: 1px solid rgba(99, 91, 255, 0.13);
    border-radius: 12px;
  }

  .checkout-flow > li > span {
    width: 34px;
    height: 34px;
    margin-inline: auto;
    border-radius: 9px;
    font-size: 0.8rem;
  }

  .checkout-flow strong {
    font-size: clamp(0.84rem, 3.6vw, 0.9rem);
    line-height: 1.28;
    text-wrap: balance;
  }

  .checkout-flow small {
    display: none;
  }

  .checkout-provider {
    grid-template-columns: 52px minmax(0, 1fr);
    margin-top: 10px;
    padding: 9px 11px 9px 8px;
    gap: 10px;
  }

  .checkout-provider-icon {
    display: grid;
    width: 52px;
    height: 52px;
  }

  .checkout-provider > div > small {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .checkout-provider h3 {
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .checkout-methods {
    gap: 5px;
  }

  .checkout-methods li {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  .checkout-note {
    margin-top: 9px;
    padding-left: 10px;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  /* Como funciona */
  .split-heading {
    margin-bottom: 20px;
  }

  .split-heading > p {
    margin-top: 9px;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .steps-grid {
    gap: 7px;
  }

  .steps-grid li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 10px 11px;
    gap: 5px 9px;
  }

  .step-icon {
    width: 38px;
    height: 38px;
  }

  .steps-grid h3 {
    font-size: 0.86rem;
  }

  .steps-grid p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .step-number {
    top: 10px;
    right: 11px;
    font-size: 0.78rem;
  }

  /* Templates */
  .template-comparison-grid {
    gap: 8px;
  }

  .template-comparison-card {
    min-height: 0;
    padding: 5px 5px 0;
  }

  .template-comparison-stage {
    padding: 9px 60px 9px 9px;
  }

  .template-comparison-mobile {
    right: 7px;
    bottom: 7px;
    width: 52px;
  }

  .template-comparison-copy {
    padding: 8px 5px 9px;
  }

  /* A categoria é etiqueta, não título: em 0,75rem ela quebrava em duas
     linhas e gritava mais alto que o nome do template. */
  .template-comparison-copy > span {
    font-size: 0.62rem;
  }

  .template-comparison-copy > strong {
    font-size: 0.98rem;
  }

  .template-comparison-copy > small {
    font-size: 0.72rem;
  }

  .custom-template-card {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas:
      "custom-icon custom-copy"
      "custom-cta custom-cta";
    margin-top: 8px;
    padding: 8px 9px;
    gap: 7px 9px;
  }

  .custom-template-icon {
    grid-area: custom-icon;
    width: 38px;
    height: 38px;
  }

  .custom-template-copy {
    grid-area: custom-copy;
    min-width: 0;
  }

  .custom-template-copy > span {
    display: none;
  }

  .custom-template-copy h3 {
    font-size: 0.94rem;
  }

  /* Sem a descrição, o card virava um botão verde solto no fim da seção:
     título e cotação, sem dizer do que se tratava. */
  .custom-template-copy p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .custom-template-cta {
    width: 100%;
    min-height: 44px;
    padding-inline: 9px;
    grid-area: custom-cta;
    justify-self: stretch;
    font-size: 0.78rem;
  }

  .template-note {
    display: none;
  }

  /* Públicos */
  .audience-grid,
  .faq-grid {
    gap: 20px;
  }

  .audience-copy > p {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .audience-copy .text-link {
    margin-top: 12px;
  }

  .audience-cards {
    gap: 7px;
  }

  .audience-cards article {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 68px;
    padding: 10px 11px;
    gap: 9px;
  }

  .audience-icon {
    width: 42px;
    height: 42px;
  }

  .audience-cards h3 {
    font-size: 0.86rem;
  }

  .audience-cards p {
    margin-top: 2px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  /* FAQ: respostas permanecem acessíveis ao toque, mas começam recolhidas. */
  .faq-aside > p {
    display: none;
  }

  .faq-artwork {
    display: none;
  }

  .faq-reassurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
    gap: 5px;
  }

  .faq-reassurance li {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    min-height: 70px;
    padding: 7px 5px;
    place-items: center;
    text-align: center;
  }

  .faq-reassurance-icon {
    width: 34px;
    height: 34px;
    margin: 0;
    grid-row: auto;
  }

  .faq-reassurance-icon img {
    width: 33px;
    height: 33px;
  }

  .faq-reassurance strong {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .faq-reassurance small {
    display: none;
  }

  .accordion {
    gap: 4px;
  }

  .accordion summary {
    min-height: 56px;
    padding: 10px 12px;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .faq-summary-action i {
    width: 28px;
    height: 28px;
  }

  .faq-summary-action i::before,
  .faq-summary-action i::after {
    top: 13px;
    left: 8px;
  }

  .accordion details p {
    padding: 0 44px 16px 12px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .faq-support {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 8px;
    gap: 8px;
  }

  .faq-support-icon {
    width: 38px;
    height: 38px;
  }

  .faq-support h3 {
    font-size: 0.92rem;
  }

  .faq-support p {
    display: none;
  }

  .faq-support-cta {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding-inline: 9px;
    grid-column: 1 / -1;
    font-size: 0.86rem;
  }

  /* Hierarquia tipográfica mobile: títulos equilibrados e textos internos
     alinhados pelo mesmo eixo, sem depender da largura de cada conteúdo. */
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.58rem, 7.2vw, 1.85rem);
    line-height: 1.08;
  }

  .benefit-card-copy,
  .steps-grid li > h3,
  .steps-grid li > p,
  .template-comparison-copy,
  .custom-template-copy,
  .audience-cards article > div {
    text-align: left;
  }

  .benefit-card-copy,
  .platform-feature-copy,
  .custom-template-copy,
  .audience-cards article > div {
    align-self: center;
  }

  .value-item-copy strong {
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.7rem, 3vw, 0.78rem);
    line-height: 1.2;
    text-wrap: balance;
  }

  .platform-features strong {
    font-size: clamp(0.8rem, 3.2vw, 0.86rem);
    line-height: 1.18;
    text-wrap: balance;
  }

  .template-comparison-copy > strong {
    line-height: 1.2;
  }

  .custom-template-copy h3 {
    margin: 0;
    line-height: 1.15;
    text-wrap: balance;
  }

  .custom-template-cta {
    font-size: 0.78rem;
    text-align: center;
  }

  .faq-reassurance strong {
    display: flex;
    min-height: 2.4em;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-wrap: balance;
  }
}

@media (max-width: 360px) {
  .faq-support {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .faq-support-cta {
    width: 100%;
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-border::after {
    animation: none !important;
    transition: none !important;
  }

  .brand-pixel {
    animation: none;
    translate: 0 0;
    rotate: 0deg;
  }

  .hero-brand-pixel {
    animation: none;
    translate: 0 0;
    rotate: 0deg;
  }

  .checkout-brand-pixels i {
    animation: none;
  }

  /* Transparência inicial preservada; a mudança de estado fica instantânea
     quando a preferência do sistema reduz movimento. */
  .site-header::before {
    opacity: 1 !important;
    animation: none !important;
  }

  .cookie-consent-panel::after,
  .cookie-consent-icon::before {
    animation: none !important;
  }

  /* Conteudo sempre final e totalmente visivel quando o usuario reduz motion. */
  :is(
    .site-header .brand,
      .desktop-nav > a,
      .header-actions > a,
      .mobile-menu > summary,
      .hero-copy > .eyebrow,
      .hero-title-line,
      .hero-lead,
      .hero-actions > .button,
      .hero-points > li,
      .hero-device-visual,
      .hero-device-rays,
      .value-strip-copy,
      .value-items > .value-item,
      .value-item-icon,
      .value-item-copy,
      .benefits .section-heading > *,
      .benefit-story,
      .benefit-story-media,
      .benefit-journey > .benefit-card,
      .benefit-card .benefit-index > span,
      .benefit-card .feature-icon,
      .benefit-card .benefit-card-copy,
      .benefit-card > ul,
      .benefit-card .benefit-preview,
      .platform-copy > *,
      .platform-features > li,
      .platform-features > li > span,
      .platform-feature-copy,
      .platform-device,
      .checkout-copy > *,
      .checkout-flow > li,
      .checkout-flow > li > span,
      .checkout-flow > li > div,
      .checkout-provider,
      .checkout-provider-icon,
      .checkout-provider > div,
      .checkout-note,
      .checkout-visual,
      .steps .split-heading *,
      .steps-grid > li,
      .steps-grid > li > .step-number,
      .steps-grid > li > .step-icon,
      .steps-grid > li > h3,
      .steps-grid > li > p,
      .templates .section-heading > *,
      .template-comparison-card,
      .template-comparison-desktop,
      .template-comparison-mobile,
      .template-comparison-copy,
      .template-card,
      .custom-template-card,
      .custom-template-icon,
      .custom-template-copy,
      .custom-template-cta,
      .template-note,
      .audience-copy > *,
      .audience-cards > article,
      .audience-icon,
      .audience-cards > article > div,
      .faq-aside > *,
      .faq-reassurance > li,
      .faq-reassurance-icon,
      .faq-reassurance > li > strong,
      .faq-reassurance > li > small,
      .accordion > details,
      .faq-question,
      .faq-summary-action,
      .accordion > details[open] > p,
      .faq-support,
      .faq-support-icon,
      .faq-support > div,
      .faq-support-cta,
      .cta-card,
      .cta-content > *,
      .cta-pillars > li,
      .cta-pillar-icon,
      .cta-pillars > li > div
  ) {
    opacity: 1 !important;
    translate: none !important;
    scale: 1 !important;
    animation: none !important;
  }

  .headline-accent::after {
    opacity: 0.95 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Impressoes e geradores de PDF recebem o estado final, nunca um frame parcial. */
@media print {
  .cookie-consent {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    opacity: 1 !important;
    translate: none !important;
    scale: 1 !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .integrations-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  .integrations-copy {
    max-width: 760px;
  }

  .integrations-logos {
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  .integrations-logos {
    grid-template-columns: minmax(0, 1fr);
  }

  .integration-card {
    min-height: 0;
  }

  .integrations-note {
    text-align: left;
  }
}

@media (forced-colors: active) {
  html {
    scrollbar-color: auto;
  }

  .motion-border::after {
    display: none;
  }

  .site-header::before {
    background: Canvas;
    border-bottom: 1px solid CanvasText;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }



  .cookie-consent-panel::after,
  .cookie-consent-icon::before {
    display: none;
  }

  .mobile-nav,
      .header-login,
      .button-secondary,
      .footer-login,
      .menu-toggle,
      .value-strip-inner,
      .value-item,
      .benefit-card,
      .platform-features > li,
      .checkout-provider,
      .checkout-demo-label,
      .integration-card,
      .integration-logo-frame,
      .integration-status,
      .steps-grid li,
      .template-comparison-card,
      .custom-template-card,
      .audience-cards article,
      .accordion details,
      .faq-support,
      .cta-card,
      .cookie-consent-panel,
      .cookie-choice {
    color: CanvasText;
    background: Canvas;
    border: 1px solid CanvasText;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .cookie-consent-icon {
    color: CanvasText;
    background: Canvas;
    border: 1px solid CanvasText;
    box-shadow: none;
  }

  .cookie-consent-icon-art {
    filter: none;
  }
}
