/* ============================================================
   Lero v2 — visual amplo · vidro/iPhone
   Paleta da marca · Neue Plak · glass sobre fundos com brilho
   ============================================================ */

@font-face {
  font-family: "Neue Plak";
  src: url("../assets/fonts/neue-plak-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Plak";
  src: url("../assets/fonts/neue-plak-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Neue Plak";
  src: url("../assets/fonts/neue-plak-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/open-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/open-sans-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- tokens ---------- */

:root {
  /* branco gelo + laranja claro — espelho da plataforma */
  --ink: #232830;        /* texto forte — neutro escuro, como a UI do produto */
  --ink-deep: #14181d;
  --coral: #fd5b3b;      /* coral da marca */
  --coral-light: #ff8b74;  /* coral que respira sobre fundo escuro */
  --coral-action: #d23b1b; /* laranja acessível — links e acentos pequenos */
  --void: #05070c;       /* preto da faixa clientes → constelação */
  --body: #59616b;       /* corpo de texto — neutro médio */
  --off-white: #f6f8fa;  /* branco gelo */
  --white: #ffffff;
  --footer: #f1f4f7;

  --ink-on-dark: #ffffff;
  --body-on-dark: #ffe4db;
  --line: #e4e8ec;
  --line-dark: rgba(255, 255, 255, 0.22);
  --soft: #fff1ea;       /* tinta laranja clara */
  --soft-strong: #ffe3d6;
  --focus: #d23b1b;

  /* vidro */
  --glass-light: rgba(255, 255, 255, 0.6);
  --glass-light-border: rgba(35, 40, 48, 0.08);
  --glass-dark: rgba(255, 255, 255, 0.1);
  --glass-dark-border: rgba(255, 255, 255, 0.28);
  --blur: 20px;

  --shadow-card: 0 14px 44px rgba(35, 40, 48, 0.08);
  --shadow-shot: 0 30px 90px rgba(35, 40, 48, 0.18);

  --radius-card: 24px;
  --radius-window: 26px;
  --radius-pill: 999px;

  /* escala tipográfica — 5 degraus (zoom out) */
  --fs-display: clamp(2.2rem, 4.6vw, 3.7rem);
  --fs-section: clamp(1.6rem, 3vw, 2.5rem);
  --fs-card: 1.22rem;
  --fs-body: 1rem;
  --fs-small: 0.85rem;

  --font-display: "Neue Plak", "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;

  --sec-y: clamp(3.6rem, 9vw, 8rem);
  --sec-y-tight: clamp(2.6rem, 6vw, 5rem);
  --container: 1180px;
  --gutter: clamp(1.25rem, 4.5vw, 2.5rem);
}

/* ---------- base ---------- */

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

html {
  scroll-behavior: smooth;
  background: var(--off-white);
}

/* zoom padrão de 80% (aplicado no body para não interferir nos media queries);
   celular fica em 100% para não encolher texto nem alvos de toque */
body {
  zoom: 0.8;
}

@media (max-width: 640px) {
  body {
    zoom: 1;
  }
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--off-white);
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: clip;
}

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

a {
  color: inherit;
}

button,
input,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ul {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- oferta de saída ---------- */

html.exit-offer-open,
html.exit-offer-open body {
  overflow: hidden;
}

.exit-offer[hidden] {
  display: none;
}

.exit-offer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10020;
  display: grid;
  width: 100vw;
  height: 100vh;
  padding: clamp(0.75rem, 2.5vw, 2rem);
  color: #ffffff;
  background: rgba(12, 17, 29, 0.72);
  font-family: var(--font-body);
  opacity: 0;
  place-items: center;
  transition: opacity 220ms ease;
  zoom: 1.25;
}

.exit-offer.is-visible {
  opacity: 1;
}

.exit-offer-panel {
  position: relative;
  display: grid;
  width: min(1380px, 100%);
  height: min(620px, calc(100% - 1.5rem));
  max-height: calc(100% - 0.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: #111a31;
  box-shadow: 0 34px 110px rgba(5, 7, 12, 0.48);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms ease;
}

.exit-offer.is-visible .exit-offer-panel {
  transform: translateY(0) scale(1);
}

.exit-offer-close {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(17, 26, 49, 0.74);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  place-items: center;
  transition: background-color 160ms ease, transform 160ms ease;
}

.exit-offer-close:hover {
  background: var(--coral);
  transform: rotate(4deg);
}

.exit-offer-copy {
  display: flex;
  min-width: 0;
  padding: clamp(2.25rem, 3.2vw, 3.6rem);
  padding-right: clamp(1.75rem, 2.6vw, 3rem);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.exit-offer-logo {
  width: clamp(88px, 8vw, 112px);
  margin-bottom: clamp(1.15rem, 1.8vw, 1.7rem);
}

.exit-offer-eyebrow {
  margin: 0 0 0.75rem;
  color: #ffb09f;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exit-offer h2 {
  max-width: 590px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 2.85vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.exit-offer h2 em {
  color: #ff8066;
  font-style: normal;
}

.exit-offer-copy > p:not(.exit-offer-eyebrow, .exit-offer-note) {
  max-width: 570px;
  margin: clamp(0.9rem, 1.4vw, 1.25rem) 0 0;
  color: #dfe5f0;
  font-size: clamp(0.96rem, 1.15vw, 1.1rem);
  line-height: 1.55;
}

.exit-offer-value {
  display: flex;
  width: min(100%, 570px);
  margin-top: clamp(0.95rem, 1.5vw, 1.35rem);
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 128, 102, 0.42);
  border-radius: 18px;
  background: rgba(253, 91, 59, 0.11);
  align-items: center;
  gap: 0.95rem;
}

.exit-offer-value strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.7vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

.exit-offer-value span {
  padding-left: 0.95rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4f6fb;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.exit-offer-benefits {
  display: flex;
  max-width: 570px;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.exit-offer-benefits span {
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: #bec7d8;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
}

.exit-offer-cta {
  display: inline-flex;
  min-height: 56px;
  margin-top: clamp(1rem, 1.5vw, 1.35rem);
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 14px 34px rgba(253, 91, 59, 0.28);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: background-color 160ms ease, transform 160ms ease;
}

.exit-offer-cta:hover {
  background: #e64a2e;
  transform: translateY(-2px);
}

.exit-offer-note {
  max-width: 560px;
  margin: 0.65rem 0 0;
  color: #9faabe;
  font-size: 0.74rem;
  line-height: 1.45;
}

.exit-offer-visual {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: clamp(4.7rem, 6.5vw, 6.4rem) clamp(1rem, 2vw, 1.8rem) clamp(2.5rem, 4vw, 3.8rem) 0;
  place-items: center;
}

.exit-offer-product-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.exit-offer-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #f4f5f7;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.exit-offer-shot span {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-pill);
  color: #ffffff;
  background: rgba(17, 26, 49, 0.88);
  box-shadow: 0 8px 24px rgba(7, 12, 25, 0.2);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.exit-offer-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exit-offer-shot-campaigns {
  top: 7%;
  right: -2.4rem;
  width: calc(100% + 1.8rem);
  aspect-ratio: 1.84;
  transform: rotate(1.2deg);
}

.exit-offer-shot-campaigns img {
  object-position: center;
}

.exit-offer-shot-marketing {
  bottom: -5%;
  left: 1.2rem;
  width: 76%;
  aspect-ratio: 1.72;
  border-color: rgba(255, 128, 102, 0.45);
  box-shadow: 0 30px 80px rgba(5, 7, 12, 0.44);
  transform: rotate(-2.4deg);
}

.exit-offer-shot-marketing img {
  object-position: center;
}

@media (max-width: 900px) {
  .exit-offer-panel {
    height: auto;
    min-height: 0;
    max-height: calc(100% - 1rem);
    overflow: hidden auto;
    grid-template-columns: 1fr;
  }

  .exit-offer-copy {
    padding: 4rem clamp(1.5rem, 7vw, 3.5rem) 2rem;
  }

  .exit-offer-logo {
    margin-bottom: 2rem;
  }

  .exit-offer-visual {
    min-height: 430px;
    padding: 0 clamp(1.5rem, 7vw, 3.5rem) 2rem;
  }

  .exit-offer-shot-campaigns {
    right: -1rem;
    width: calc(100% + 1rem);
  }
}

@media (max-width: 640px) {
  .exit-offer {
    zoom: 1;
  }
}

@media (max-width: 560px) {
  .exit-offer {
    padding: 0.65rem;
  }

  .exit-offer-panel {
    max-height: calc(100vh - 1.3rem);
    border-radius: 23px;
  }

  .exit-offer-close {
    width: 44px;
    height: 44px;
  }

  .exit-offer-copy {
    padding: 4.5rem 1.35rem 1.6rem;
  }

  .exit-offer-logo {
    width: 90px;
    margin-bottom: 1.5rem;
  }

  .exit-offer h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .exit-offer-value {
    align-items: flex-start;
  }

  .exit-offer-benefits {
    gap: 0.4rem;
  }

  .exit-offer-cta {
    width: 100%;
  }

  .exit-offer-visual {
    min-height: 350px;
    padding: 0 1rem 1.35rem;
  }

  .exit-offer-product-stack {
    min-height: 330px;
  }

  .exit-offer-shot-campaigns {
    top: 5%;
    right: -0.5rem;
    width: calc(100% + 0.5rem);
  }

  .exit-offer-shot-marketing {
    bottom: 3%;
    left: 0.5rem;
    width: 78%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exit-offer,
  .exit-offer-panel,
  .exit-offer-close,
  .exit-offer-cta {
    transition: none;
  }
}

.sec-dark :focus-visible {
  outline-color: #ffffff;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 1rem;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- brilhos de fundo (o vidro precisa refratar algo) ---------- */

.glow-scope {
  position: relative;
}

.glow-scope > .container {
  position: relative;
  z-index: 1;
}

.glow-scope::before,
.glow-scope::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sec-dark.glow-scope::before {
  width: 560px;
  height: 560px;
  left: -160px;
  top: -120px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.16), transparent);
}

.sec-dark.glow-scope::after {
  width: 640px;
  height: 640px;
  right: -200px;
  bottom: -180px;
  background: radial-gradient(closest-side, rgba(255, 158, 120, 0.28), transparent);
}

.sec-light.glow-scope::before {
  width: 520px;
  height: 520px;
  left: -140px;
  top: -100px;
  background: radial-gradient(closest-side, rgba(253, 91, 59, 0.09), transparent);
}

.sec-light.glow-scope::after {
  width: 560px;
  height: 560px;
  right: -160px;
  bottom: -140px;
  background: radial-gradient(closest-side, rgba(255, 150, 110, 0.14), transparent);
}

/* ---------- superfícies de vidro ---------- */

.glass {
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
}

.sec-dark .glass {
  background: var(--glass-dark);
  border-color: var(--glass-dark-border);
  box-shadow: var(--shadow-shot);
}

/* ---------- type ---------- */

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-section);
  line-height: 1.1;
  letter-spacing: -0.016em;
  color: var(--ink);
  text-wrap: balance;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-card);
  line-height: 1.25;
  color: var(--ink);
}

.sec-dark h2,
.sec-dark h3 {
  color: var(--ink-on-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-action);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.sec-dark .eyebrow {
  color: #ffe8e0;
}

.coral-mark {
  color: var(--coral-action);
}

.lead {
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

/* ---------- botões ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

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

.button:active {
  transform: translateY(0);
}

/* CTA de teste grátis — caixa alta + pulso suave (anel coral) */
.trial-cta {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.trial-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(253, 91, 59, 0.5);
  animation: trial-pulse 2.6s ease-out infinite;
}

@keyframes trial-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 91, 59, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(253, 91, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 91, 59, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trial-cta::after {
    animation: none;
  }
}

/* primário — coral da marca com texto escuro (4,7:1) */
.button-primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(253, 91, 59, 0.32);
}

.button-primary:hover {
  background: #ff7256;
}

/* primário — mesmo estilo (nome legado) */
.button-coral {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(253, 91, 59, 0.32);
}

.button-coral:hover {
  background: #ff7256;
}

/* secundário sobre claro — vidro */
.button-outline {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-color: rgba(35, 40, 48, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-outline:hover {
  background: var(--white);
  border-color: var(--ink);
}

/* secundário sobre claro — vidro com contorno */
.button-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-color: rgba(35, 40, 48, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

/* primário — mesmo estilo (nome legado, usado na faixa final) */
.button-navy {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(253, 91, 59, 0.32);
}

.button-navy:hover {
  background: #ff7256;
}

.button-compact {
  min-height: 44px;
  padding: 0.45rem 1.35rem;
  font-size: 0.9rem;
}

/* ---------- header (vidro) ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 72px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding-block: 0.55rem;
}

.brand-link img {
  width: 88px;
  height: auto;
}

/* ---------- logo animado (rola ao scrollar) ----------
   Ao descer a página o "o" rola para a esquerda comendo as letras
   (r -> e -> l) até sobrar só ele; ao subir, rola de volta e as letras
   reaparecem (l -> e -> r). Inspirado no cabeçalho do ManyChat. */
.brand-mark {
  display: inline-flex;
  overflow: hidden;
  width: 88px;
  min-width: 0; /* permite encolher abaixo da largura do SVG (item flex) */
  transition: width 0.55s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.brand-logo {
  display: block;
  flex: none;
  width: 88px;
  height: auto;
}

.brand-logo .bl-letters path {
  transform-box: fill-box;
  transform-origin: right center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* atrasos na EXPANSÃO (subir): reaparecem da esquerda para a direita */
.brand-logo .bl-l { transition-delay: 0s; }
.brand-logo .bl-e { transition-delay: 0.09s; }
.brand-logo .bl-r { transition-delay: 0.18s; }

.brand-logo .bl-o {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* estado recolhido (descer): o "o" rola para a esquerda comendo as letras */
.site-header.logo-collapsed .brand-mark { width: 30px; }

.site-header.logo-collapsed .bl-letters path {
  opacity: 0;
  transform: scaleX(0);
}

/* atrasos no RECOLHIMENTO (descer): somem da direita para a esquerda */
.site-header.logo-collapsed .bl-r { transition-delay: 0s; }
.site-header.logo-collapsed .bl-e { transition-delay: 0.09s; }
.site-header.logo-collapsed .bl-l { transition-delay: 0.18s; }

.site-header.logo-collapsed .bl-o {
  transform: translateX(-397px) rotate(-360deg);
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark,
  .brand-logo .bl-letters path,
  .brand-logo .bl-o {
    transition: none;
  }
}

.desktop-nav {
  display: flex;
  gap: 0.3rem;
  margin-inline: auto;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(35, 40, 48, 0.06);
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-login {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.6rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.header-login:hover {
  color: var(--coral-action);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* menu móvel */
.mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.45rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
}

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

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 17px;
}

.menu-icon span {
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(86vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a,
.mobile-login {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.45rem 0.8rem;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-login:hover {
  background: var(--soft);
}

.mobile-login {
  border-top: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
  margin-bottom: 0.55rem;
}

/* ---------- fundos de seção ---------- */

.sec-dark {
  background: linear-gradient(160deg, #c1350f 0%, #90260b 100%);
  color: var(--body-on-dark);
}

.sec-light {
  background: var(--off-white);
}

.sec-white {
  background: var(--white);
}

/* seção no fundo do mergulho: preto pleno, tipografia invertida */
.sec-void {
  background: var(--void);
  color: rgba(255, 255, 255, 0.66);
}

.sec-void .eyebrow {
  color: var(--coral-light);
}

.sec-void h2,
.sec-void h3 {
  color: var(--ink-on-dark);
}

.sec-void .lead,
.sec-void .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.sec-void strong {
  color: var(--ink-on-dark);
}

/* ---------- hero ---------- */

/* fundo claro com blobs animados atrás do conteúdo */
.hero-light {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.hero-light > .container {
  position: relative;
  z-index: 1;
}

.hero-light::before,
.hero-light::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-light::before {
  width: 500px;
  height: 500px;
  right: -100px;
  top: -80px;
  background: rgba(253, 91, 59, 0.13);
  animation: blob-a 16s ease-in-out infinite alternate;
}

.hero-light::after {
  width: 400px;
  height: 400px;
  right: 200px;
  bottom: -140px;
  background: rgba(255, 190, 158, 0.26);
  animation: blob-b 21s ease-in-out infinite alternate;
}

@keyframes blob-a {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-70px, 50px) scale(1.18);
  }
}

@keyframes blob-b {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(80px, -60px) scale(0.88);
  }
}

.hero {
  padding-block: clamp(3.4rem, 8vw, 6.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.hero h1 {
  color: var(--ink);
  max-width: 15ch;
}

.hero .lead {
  max-width: 46ch;
  margin-top: 1.4rem;
  color: var(--body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

/* janela de produto no hero */
.hero-window {
  transform: rotate(-1.4deg);
  transition: transform 0.4s ease;
}

.hero-window:hover {
  transform: rotate(0deg);
}

/* entrada escalonada do hero (no load) */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy > * {
  animation: hero-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.23s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero-visual {
  animation: hero-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.28s both;
}

/* chips de vidro no hero */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.6rem;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--glass-dark);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-on-dark);
}

/* ---------- faixa de clientes ---------- */
/* Continua clara: o mergulho no preto só começa depois dela, já dentro da
   seção da constelação (ver --void-dive). Sem borda embaixo — a emenda com o
   degradê tem de ser invisível. */

.clients {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
  background: var(--off-white);
}

.clients h2 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body);
}

/* marquee de clientes — rola da direita para a esquerda, sem parar */
.marquee {
  margin-top: 1.9rem;
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 44s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  height: 52px;
  width: auto;
  max-width: 190px;
  margin-right: clamp(2.4rem, 6vw, 5rem);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.marquee-track img:hover {
  filter: none;
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- prints ampliáveis ---------- */

.zoomable {
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.glass-window .zoomable:hover,
.glass-window .zoomable:focus-visible {
  transform: scale(1.015);
  filter: brightness(1.03);
}

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

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.4rem, 1.2vw, 0.9rem);
  background: rgba(20, 24, 30, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

/* palco ocupa a tela toda: a imagem fica grande e o zoom tem espaço
   para ampliar/arrastar (antes o palco encolhia até o tamanho da imagem). */
.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  touch-action: none;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform-origin: center center;
  transition: transform 0.12s ease;
  user-select: none;
  -webkit-user-drag: none;
}

/* acima da imagem (que cria contexto de empilhamento ao ter transform),
   senão os botões de zoom/fechar ficam por baixo e não recebem clique. */
.lightbox-controls {
  position: fixed;
  top: clamp(0.9rem, 3vw, 1.6rem);
  right: clamp(0.9rem, 3vw, 1.6rem);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.lightbox-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.15s ease;
}

.lightbox-controls button:hover {
  background: rgba(255, 255, 255, 0.26);
}

.lightbox-controls button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.lightbox-controls button[data-act="reset"] {
  font-size: 0.8rem;
}

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  background: #1ebe5a;
}

.wa-float:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}

/* ---------- scaffolding ---------- */

.section {
  padding-block: var(--sec-y);
}

.section-head {
  max-width: 58ch;
  margin-bottom: clamp(2.2rem, 5vw, 3.8rem);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  margin-top: 1.1rem;
}

/* O respiro do topo desta seção virou o trecho final da subida do degradê da
   constelação (ver --void-rise): repetir o padding aqui devolveria a faixa de
   branco chapado entre o fim do degradê e a eyebrow. */
#parceria-meta {
  padding-top: 0;
}

/* Subtítulo da seção Meta Business Partner: mesma família do título
   (display), num degrau abaixo — texto de apoio, não corpo. */
#parceria-meta .section-head {
  max-width: 780px;
}

#parceria-meta .section-head .lead {
  margin-top: 1.35rem;
  color: var(--body);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.95vw, 1.62rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.4;
  text-wrap: balance;
}

#parceria-meta .section-head .lead strong {
  color: var(--ink);
  font-weight: 700;
}

/* Subtítulo da constelação: um pouco maior e mais largo, acompanhando
   a largura da animação logo abaixo. */
.constellation-section .section-head {
  max-width: 860px;
}

.constellation-section .section-head .lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.68;
}

/* ---------- janelas de produto (dinâmica do site antigo) ---------- */

.features .section-head {
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: clamp(3.2rem, 8vw, 6.5rem);
}

.feature-row-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-copy .eyebrow {
  margin-bottom: 1rem;
}

.feature-copy h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.014em;
  margin-bottom: 0.8rem;
}

.feature-copy p {
  max-width: 46ch;
}

/* janela estilo vidro/iPhone */
.glass-window {
  overflow: hidden;
  border-radius: var(--radius-window);
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
  padding: 10px;
}

.feature-row .glass-window {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-row .glass-window:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(35, 40, 48, 0.14);
}

.sec-dark .glass-window {
  background: var(--glass-dark);
  border-color: var(--glass-dark-border);
  box-shadow: var(--shadow-shot);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 12px;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(35, 40, 48, 0.16);
}

.sec-dark .window-bar span {
  background: rgba(255, 255, 255, 0.22);
}

.window-bar b {
  margin-inline: auto;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(35, 40, 48, 0.45);
  transform: translateX(-22px);
}

.sec-dark .window-bar b {
  color: rgba(255, 255, 255, 0.5);
}

.glass-window img {
  width: 100%;
  border-radius: calc(var(--radius-window) - 10px);
}

/* ---------- cards de plano ---------- */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
}

.plan-card-featured {
  border: 1.6px solid var(--coral);
  box-shadow: 0 0 0 6px rgba(253, 91, 59, 0.08), var(--shadow-card);
}

.plan-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--soft-strong);
  color: #b93312;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-note {
  min-height: 1.55em;
  font-size: var(--fs-small);
}

.plan-installments {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--body);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.26rem;
  margin-top: 0.1rem;
}

.plan-price strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.plan-price .plan-cur {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.module-item dd.module-soon {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b93312;
  background: var(--soft);
  padding: 0.16rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.module-item dt .soon-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b93312;
  background: var(--soft);
  padding: 0.14rem 0.5rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  vertical-align: middle;
}

.plan-contract {
  font-size: var(--fs-small);
  margin-top: 0.2rem;
}

.plan-capacity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(35, 40, 48, 0.1);
}

.plan-capacity dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
}

.plan-capacity dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.plan-installment {
  font-size: var(--fs-small);
  margin-top: 0.9rem;
}

.plan-card .button {
  margin-top: 1.2rem;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4.5vw, 3.2rem);
}

/* ---------- parceria Meta ---------- */

/* selo oficial — versão reduzida, dentro da própria seção de parceria */
.provider-badge {
  display: block;
  width: clamp(84px, 10vw, 104px);
  height: auto;
  margin: 1.2rem auto 0;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}

.provider-card {
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
}

.provider-card h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.provider-card > p {
  margin-top: 0.8rem;
  color: var(--body);
}

.provider-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  background: rgba(35, 40, 48, 0.06);
  border: 1px solid var(--line);
  padding: 0.24rem 0.7rem;
  border-radius: var(--radius-pill);
}

.provider-tag-official {
  color: #0064e1;
  background: rgba(0, 129, 251, 0.09);
  border-color: rgba(0, 129, 251, 0.28);
}

.provider-point {
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.provider-point h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.provider-point p {
  color: var(--body);
}

@media (max-width: 760px) {
  .provider-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- faixa coral ---------- */

.coral-band {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  color: var(--body);
  text-align: center;
  padding-block: var(--sec-y);
}

.coral-band::before,
.coral-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.coral-band::before {
  width: 500px;
  height: 500px;
  right: -100px;
  top: -80px;
  background: rgba(253, 91, 59, 0.13);
  animation: blob-a 16s ease-in-out infinite alternate;
}

.coral-band::after {
  width: 400px;
  height: 400px;
  left: -80px;
  bottom: -140px;
  background: rgba(255, 190, 158, 0.26);
  animation: blob-b 21s ease-in-out infinite alternate;
}

.coral-band .container {
  position: relative;
}

.coral-band h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  max-width: 24ch;
  margin-inline: auto;
}

.coral-band .eyebrow {
  color: #b93312;
}

.coral-band p.lead {
  color: var(--body);
  max-width: 46ch;
  margin: 1.2rem auto 0;
}

.coral-band .button {
  margin-top: 2.1rem;
}

/* par de CTAs na faixa final (ex.: teste grátis + planos) */
.band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

.band-actions .button {
  margin-top: 0;
}

/* ---------- rodapé ---------- */

.site-footer {
  background: var(--footer);
  border-top: 1px solid var(--line);
  color: var(--body);
  padding-block: clamp(1.5rem, 3vw, 2.25rem) 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.4rem, 3vw, 2.4rem);
  row-gap: 0.6rem;
  padding-bottom: 1rem;
}

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

.footer-brand p {
  margin-top: 1rem;
  max-width: 30ch;
}

.footer-grid h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.footer-grid a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--body);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--coral-action);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-grid address {
  font-style: normal;
  line-height: 1.7;
}

.footer-grid p {
  line-height: 1.7;
}

.footer-downloads {
  grid-column: 2 / 3;
  display: grid;
  justify-items: center;
  align-self: end;
  gap: 0.5rem;
  text-align: center;
}

.footer-downloads > p {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

.footer-store-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: max-content;
  gap: 0.9rem;
}

.footer-grid .footer-store-link {
  display: block;
  min-height: 0;
  line-height: 0;
  transition: transform 0.15s ease;
}

.footer-grid .footer-store-link:hover {
  transform: translateY(-2px);
}

.footer-store-link img {
  display: block;
  width: 164px;
  height: auto;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.social-links a.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(35, 40, 48, 0.06);
  color: var(--body);
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.social-links a.social-icon:hover {
  color: #fff;
  background: var(--coral-action);
  transform: translateY(-2px);
}

.social-links a.social-icon svg {
  width: 19px;
  height: 19px;
}

.footer-meta {
  margin-top: 1.3rem;
}

.footer-meta img {
  width: 168px;
  height: auto;
  display: block;
}

.soon-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
}

.soon-card h2 {
  margin: 1rem 0 0.8rem;
}

.soon-card p {
  max-width: 48ch;
  margin-inline: auto;
}

.soon-card p + p {
  margin-top: 0.8rem;
}

.soon-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--soft);
  color: #b93312;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- página de dúvidas (layout em 2 colunas, cabeçalho sticky) ---------- */

.faq-hero {
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.content-hero-grid h1 {
  color: var(--ink);
}

.content-hero-grid .lead {
  margin-top: 1.1rem;
  color: var(--body);
}

.content-hero-grid .button {
  margin-top: 1.8rem;
}

.faq-jump {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
}

.faq-jump > p {
  margin: 0.2rem 0.5rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
}

.faq-jump a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
  min-height: 48px;
  padding: 0.4rem 0.7rem;
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.faq-jump a:hover {
  background: var(--soft);
}

.faq-jump a span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: #b93312;
  font-variant-numeric: tabular-nums;
}

.faq-section {
  padding-block: clamp(2.4rem, 5vw, 4rem);
}

.faq-section-tint {
  background: var(--off-white);
}

.faq-2col {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 90px;
}

.faq-sticky .eyebrow {
  margin-bottom: 0.8rem;
}

.faq-sticky h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.faq-count {
  margin-top: 0.7rem;
  font-size: var(--fs-small);
  color: var(--body);
}

@media (max-width: 900px) {
  .content-hero-grid {
    grid-template-columns: 1fr;
  }

  .faq-2col {
    grid-template-columns: 1fr;
  }

  .faq-sticky {
    position: static;
  }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  text-align: center;
  padding-block: 0.8rem;
  border-top: 1px solid rgba(35, 40, 48, 0.12);
  font-size: var(--fs-small);
}

/* ============================================================
   PÁGINA DE PLANOS
   ============================================================ */

.plans-hero {
  padding-block: clamp(3.4rem, 7vw, 5.5rem);
  text-align: center;
}

.plans-hero h1 {
  color: var(--ink);
  max-width: 20ch;
  margin-inline: auto;
}

.plans-hero .lead {
  max-width: 56ch;
  margin: 1.4rem auto 0;
  color: var(--body);
}

.plans-hero .button {
  margin-top: 2.1rem;
}

/* ---------- Planos 2 — abas simples (sem janela e sem fundo) ---------- */

/* agrupador — sem card, sem fundo, sem sombra */
.plans-console {
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

/* barra de abas estilo "sublinhado" */
.console-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem);
}

.console-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.4rem 0.15rem;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.console-tab i {
  font-style: normal;
  font-weight: 700;
  color: var(--coral-action);
}

.console-tab:hover {
  color: var(--ink);
}

.console-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--coral);
}

.console-tab:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}

.console-body {
  padding: 0;
  background: none;
}

.console-panel[hidden] {
  display: none;
}

.panel-head {
  max-width: 62ch;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.panel-head h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
}

.panel-head p {
  margin-top: 0.7rem;
  color: var(--body);
}

.panel-subhead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8rem 0 1.1rem;
}

.panel-actions {
  margin-top: 1.8rem;
}

@media (max-width: 760px) {
  .console-tabs {
    gap: 0.1rem 1.1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .console-tab {
    min-height: 46px;
    font-size: 0.9rem;
    white-space: nowrap;
    flex: none;
  }
}

/* seletor de prazo — vidro */

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}

.term-selector {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin: 0;
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.term-option {
  position: relative;
  display: inline-flex;
}

.term-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.term-option label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.term-option label small {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-action);
}

.term-option input:checked + label {
  background: var(--coral);
  color: var(--ink);
}

.term-option input:checked + label small {
  color: var(--ink);
}

.term-option input:focus-visible + label {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.pricing-context {
  margin-bottom: 2.1rem;
  font-size: var(--fs-small);
}

/* faixa Ultra */

.ultra-band {
  position: relative;
  overflow: clip;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: clamp(1.8rem, 3.6vw, 2.8rem);
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1.6px solid var(--coral);
  box-shadow: 0 0 0 6px rgba(253, 91, 59, 0.08), var(--shadow-card);
  color: var(--body);
}

.ultra-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(253, 91, 59, 0.12), transparent);
  pointer-events: none;
}

.ultra-band > div {
  position: relative;
}

.ultra-band h2 {
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-top: -0.4rem;
  margin-bottom: 0.5rem;
}

.ultra-band .eyebrow {
  margin-bottom: 0.5rem;
}

.ultra-band > div:first-child {
  max-width: 52ch;
}

.ultra-band .eyebrow {
  color: var(--coral-action);
}

.ultra-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.ultra-action strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
}

/* incluso em todos */

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(1.8rem, 4.5vw, 3.6rem);
  align-items: start;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.4rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  list-style: none;
}

.included-list li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  font-size: 0.95rem;
}

.included-list li::before {
  content: "✓";
  flex: none;
  font-weight: 700;
  color: var(--coral-action);
}

/* condições de pagamento */

.payment-details {
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  background: var(--glass-light);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
}

.payment-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-card);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

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

.payment-details summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.payment-details[open] summary::after {
  transform: rotate(45deg);
}

.payment-content {
  padding: 0 1.5rem 1.7rem;
  display: grid;
  gap: 1.8rem;
}

.payment-content h3 {
  margin-bottom: 0.8rem;
}

.payment-content table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
}

.payment-content th,
.payment-content td {
  text-align: left;
  padding: 0.65rem 0.9rem 0.65rem 0;
  border-bottom: 1px solid rgba(35, 40, 48, 0.1);
}

.payment-content thead th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
}

.payment-content tbody th {
  font-weight: 700;
  color: var(--ink);
}

.payment-notes {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  font-size: var(--fs-small);
}

/* módulos */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 1.9rem);
}

.module-group {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
}

.module-group h3 {
  margin-bottom: 1.1rem;
}

.module-group dl {
  display: grid;
  gap: 0.8rem;
}

.module-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(35, 40, 48, 0.1);
}

.module-item dt {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.module-item dt small {
  display: block;
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--body);
}

.module-item dd {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
}

.module-notes {
  margin-top: 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  font-size: var(--fs-small);
}

/* onboarding */

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

.onboarding-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.onboarding-card {
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
}

.onboarding-card > span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-action);
  margin-bottom: 0.45rem;
}

.onboarding-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ink);
  margin-top: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.onboarding-card .single {
  font-size: var(--fs-small);
}

.onboarding-rule {
  margin-top: 1.2rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: var(--soft);
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* implementação — detalhes progressivos mantêm a página completa sem
   transformar os três modelos em blocos excessivamente longos */

.implementation-page .onboarding-models {
  align-items: start;
}

.implementation-page .onboarding-models .onboarding-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.implementation-page .onboarding-models .single {
  min-height: 3.4em;
}

.implementation-page .onboarding-models .onboarding-rule {
  min-height: 7.4em;
}

.implementation-page .onboarding-detail {
  margin-top: 1.2rem;
}

.implementation-page .onboarding-detail summary {
  display: flex;
  min-height: 50px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.implementation-page .onboarding-detail summary::-webkit-details-marker {
  display: none;
}

.implementation-page .onboarding-detail summary::after {
  color: var(--coral-action);
  content: "+";
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.implementation-page .onboarding-detail[open] summary::after {
  transform: rotate(45deg);
}

.implementation-page .onboarding-detail > div {
  display: grid;
  padding: 1.15rem 0.25rem 0.2rem;
  font-size: var(--fs-small);
  gap: 0.85rem;
}

.implementation-page .onboarding-detail h4 {
  margin: 0.4rem 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.implementation-page .onboarding-detail ul {
  display: grid;
  margin: 0;
  padding-left: 1.2rem;
  gap: 0.45rem;
}

.implementation-page .onboarding-detail strong {
  display: inline;
  margin-top: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
}

.onboarding-facts-site {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  background: var(--glass-light);
  box-shadow: var(--shadow-card);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.onboarding-facts-site article {
  display: grid;
  min-width: 0;
  min-height: 150px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  align-content: space-between;
  gap: 1rem;
}

.onboarding-facts-site article:last-child {
  border-right: 0;
}

.onboarding-facts-site strong {
  color: var(--coral-action);
  font-family: var(--font-display);
  font-size: var(--fs-card);
}

.onboarding-facts-site span {
  font-size: var(--fs-small);
  line-height: 1.6;
}

.implementation-page .onboarding-plan-note {
  margin-top: 1.4rem;
}

.implementation-timeline {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
  list-style: none;
}

.implementation-timeline li {
  display: grid;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  background: var(--glass-light);
  box-shadow: var(--shadow-card);
  align-content: start;
  gap: 0.65rem;
}

.implementation-timeline li > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(253, 91, 59, 0.38);
  border-radius: 50%;
  color: var(--coral-action);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  place-items: center;
}

.implementation-timeline li > strong {
  margin-top: 0.25rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-card);
}

.implementation-timeline p {
  font-size: var(--fs-small);
  line-height: 1.65;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.additional-services-site {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.additional-services-site > div {
  display: grid;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
}

.additional-services-site dt {
  color: var(--body);
}

.additional-services-site dd {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

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

  .onboarding-facts-site article:nth-child(2) {
    border-right: 0;
  }

  .onboarding-facts-site article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .implementation-timeline,
  .services-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .onboarding-facts-site {
    grid-template-columns: 1fr;
  }

  .onboarding-facts-site article,
  .onboarding-facts-site article:nth-child(2) {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .onboarding-facts-site article:last-child {
    border-bottom: 0;
  }

  .additional-services-site > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .additional-services-site dd {
    white-space: normal;
  }
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(1.8rem, 4.5vw, 3.6rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: 18px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  border-radius: 18px;
}

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

.faq-list summary::after {
  content: "+";
  flex: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--coral-action);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
}

/* links inline em texto corrido */
.faq-list p a,
.lead a,
.section-head a {
  color: var(--coral-action);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   PÁGINAS INTERNAS — implementação · integrações · dúvidas
   ============================================================ */

/* chips de ferramentas (nomes de integrações) */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--soft);
  border: 1px solid #ffd6c4;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b93312;
}

.int-list {
  margin-top: 0.9rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

/* catálogo de integrações — acordeão nativo <details>, sem JavaScript.
   Reaproveita .int-list nas funcionalidades e .onboarding-rule no
   bloco "Como ativar". */

.int-catalog {
  display: grid;
  gap: 0.7rem;
}

.int-card {
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: 18px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.int-card:hover {
  border-color: rgba(253, 91, 59, 0.22);
}

.int-card[open] {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(253, 91, 59, 0.32);
}

/* linha fechada — o gatilho */

.int-card > summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding: 0.85rem 1.25rem;
  border-radius: 18px;
  cursor: pointer;
  list-style: none;
}

.int-card > summary::-webkit-details-marker {
  display: none;
}

/* o anel de foco global arredonda em 6px; aqui acompanha o card */
.int-card > summary:focus-visible {
  border-radius: 18px;
}

.int-card > summary::after {
  content: "+";
  flex: none;
  margin-left: auto;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--coral-action);
  transition: transform 0.2s ease;
}

.int-card[open] > summary::after {
  transform: rotate(45deg);
}

/* ladrilho do logo — fundo branco porque as marcas são de terceiros
   e coloridas; o vidro da página não serve de base para elas */

.int-logo {
  flex: none;
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

/* respiro curto de propósito: o zoom global de 0.8 já reduz o ladrilho
   para ~45px visuais, e um padding maior deixaria os wordmarks ilegíveis */
.int-logo img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}

/* ícones de app já vêm com fundo colorido de borda a borda:
   preenchem o ladrilho, sem respiro nem moldura branca */
.int-logo[data-fit="bleed"] {
  border-color: transparent;
  background: transparent;
}

.int-logo[data-fit="bleed"] img {
  padding: 0;
  object-fit: cover;
}

/* wordmark largo (Omie, ~3:1): usa a largura inteira do ladrilho, senão
   o respiro lateral o reduziria a uma tarja ilegível */
.int-logo[data-fit="wide"] img {
  padding: 2px 0;
}

/* nome, categoria e chamada */

.int-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  column-gap: 0.6rem;
  row-gap: 0.15rem;
}

.int-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

/* mesmas cores de .tag-row span, em porte inline */
.int-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.05rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--soft);
  border: 1px solid #ffd6c4;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.7;
  color: #b93312;
  white-space: nowrap;
}

.int-tagline {
  flex-basis: 100%;
  font-size: var(--fs-small);
  line-height: 1.45;
  color: var(--body);
}

/* painel aberto — recuado para alinhar com o texto do summary */

.int-panel {
  padding: 0 1.25rem 1.35rem calc(2.25rem + 56px);
}

.int-desc {
  max-width: 78ch;
  font-size: 0.95rem;
}

.int-label {
  margin-top: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-action);
}

.int-panel .int-list {
  margin-top: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 2rem;
}

.int-panel .onboarding-rule strong {
  color: var(--ink);
}

/* abertura animada onde houver suporte; o Firefox simplesmente abre */
@supports (interpolate-size: allow-keywords) {
  .int-card {
    interpolate-size: allow-keywords;
  }

  .int-card::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size 0.28s ease, content-visibility 0.28s allow-discrete;
  }

  .int-card[open]::details-content {
    block-size: auto;
  }
}

@media (max-width: 820px) {
  .int-panel .int-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .int-card > summary {
    gap: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .int-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .int-logo img {
    padding: 4px;
  }

  .int-panel {
    padding: 0 1rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* o bloco global zera transições de *, ::before e ::after, mas não
     alcança ::details-content — precisa do próprio reset */
  .int-card::details-content {
    transition: none;
  }
}

/* FAQ agrupado (página de dúvidas) */
.faq-narrow {
  max-width: 860px;
  margin-inline: auto;
}

.faq-group + .faq-group {
  margin-top: clamp(2.4rem, 6vw, 4rem);
}

.faq-group h2 {
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  margin-bottom: 1.1rem;
}

/* ---------- reveal ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  /* marquee estático e centralizado, sem as cópias */
  .marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 1.1rem 2.2rem;
  }

  .marquee-track img {
    margin-right: 0;
  }

  .marquee-track img[aria-hidden="true"] {
    display: none;
  }

  .hero-window {
    transform: none;
  }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 7vw, 3rem);
  }

  .hero-window {
    transform: none;
  }

  .hero-visual {
    max-width: 560px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .feature-row-reverse .feature-copy {
    order: 0;
  }

  .included-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-downloads {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .modules-grid,
  .onboarding-grid {
    grid-template-columns: 1fr;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .ultra-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .term-selector {
    justify-content: stretch;
  }

  .term-option {
    flex: 1;
  }

  .term-option label {
    flex: 1;
    justify-content: center;
    padding-inline: 0.5rem;
    flex-direction: column;
    gap: 0.1rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-store-links {
    gap: 0.7rem;
  }

  .footer-store-link img {
    width: min(164px, 42vw);
  }

  .hero-actions,
  .band-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button,
  .band-actions .button {
    width: 100%;
  }

  /* tabelas de pagamento viram listas por plano */
  .payment-content table,
  .payment-content tbody,
  .payment-content tr,
  .payment-content th,
  .payment-content td {
    display: block;
    padding: 0;
    border: 0;
  }

  .payment-content thead {
    display: none;
  }

  .payment-content tr {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(35, 40, 48, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
  }

  .payment-content tr + tr {
    margin-top: 0.7rem;
  }

  .payment-content tbody th {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.45rem;
  }

  .payment-content td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.3rem;
    font-variant-numeric: tabular-nums;
  }

  .payment-content td::before {
    content: attr(data-label);
    font-size: var(--fs-small);
    color: var(--body);
  }
}

/* ============================================================
   CONSTELAÇÃO LERO — porte da demo interativa (js/constellation.js)
   Reestilizada com os tokens do site. Tudo escopado sob .lc-* para
   não vazar para o restante da página.
   ============================================================ */

/* O mergulho no preto e a volta ao claro acontecem os dois aqui dentro: a
   descida no padding-top (--void-dive, logo depois do carrossel de clientes) e
   a subida no padding-bottom (--void-rise, antes de "Parceria oficial").
   Morando no padding, nenhum conteúdo cai na zona de transição.

   As paradas seguem um smoothstep (x²·(3−2x)) em vez de uma rampa reta: a cor
   sai devagar do claro e chega devagar no preto, sem as duas "quinas" que uma
   interpolação linear deixa nas pontas. */
.constellation-section {
  --void-dive: clamp(12rem, 26vw, 23rem);
  /* preto pleno entre o último satélite e o começo da subida: o nó mais baixo
     termina a ~40px do fim do palco, então sem essa pausa o degradê parece
     nascer colado nele. */
  --void-hold: clamp(7rem, 14vw, 12rem);
  /* a subida engole também o respiro que era o padding-top de "Parceria
     oficial" (zerado abaixo): assim o degradê morre na eyebrow em vez de
     acabar antes e deixar uma faixa de branco chapado no meio. */
  --void-rise: calc(clamp(12rem, 26vw, 23rem) + var(--sec-y));
  position: relative;
  z-index: 0;
  padding-top: calc(var(--void-dive) + clamp(1rem, 3vw, 2.5rem));
  padding-bottom: calc(var(--void-hold) + var(--void-rise));
}

/* descida: parte do --off-white da faixa de clientes */
.constellation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: var(--void-dive);
  background: linear-gradient(
    180deg,
    var(--off-white) 0%,
    #eff1f3 10%,
    #dddfe1 20%,
    #c2c4c7 30%,
    #a1a3a6 40%,
    #7e8083 50%,
    #5a5c60 60%,
    #393b3f 70%,
    #1e2025 80%,
    #0c0e13 90%,
    var(--void) 100%
  );
  pointer-events: none;
}

/* subida: chega no --white de "Parceria oficial" */
.constellation-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: var(--void-rise);
  background: linear-gradient(
    180deg,
    var(--void) 0%,
    #0c0e13 10%,
    #1f2125 20%,
    #3b3d40 30%,
    #5d5e62 40%,
    #828386 50%,
    #a7a8aa 60%,
    #c9c9cb 70%,
    #e5e5e6 80%,
    #f8f8f8 90%,
    var(--white) 100%
  );
  pointer-events: none;
}

.constellation-section > .container,
.constellation-section > .constellation-wrap {
  position: relative;
  z-index: 1;
}

.constellation-section .section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* largura cheia — a animação se espalha por toda a seção */
.constellation-wrap {
  position: relative;
  width: 100%;
  padding-inline: clamp(8px, 2vw, 24px);
}

/* palco sem moldura — ocupa toda a largura da seção, sem caixa/borda/fundo.
   Alto o bastante para a animação preencher a seção até a próxima. */
.lc-shell {
  position: relative;
  width: 100%;
  height: clamp(720px, 84vh, 980px);
  overflow: hidden;
  isolation: isolate;
}

.lc-shell svg {
  display: block;
}

/* conteúdo estático (sem JS / durante o boot). Escondido quando pronto. */
.lc-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  height: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.lc-fallback-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--ink-on-dark);
}

.lc-fallback-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 760px;
  padding: 0;
  list-style: none;
}

.lc-fallback-list li {
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.lc-shell.is-ready .lc-fallback {
  display: none;
}

/* ---------- palco ---------- */
.lc-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* preto pleno com um respiro coral no centro — o resto é vazio */
  background:
    radial-gradient(circle at 50% 50%, rgba(253, 91, 59, 0.12) 0, rgba(253, 91, 59, 0.025) 30%, transparent 62%),
    radial-gradient(circle at 16% 22%, rgba(90, 117, 190, 0.1), transparent 28%),
    radial-gradient(circle at 85% 76%, rgba(253, 91, 59, 0.07), transparent 30%),
    var(--void);
}

.lc-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(253, 91, 59, 0.3) 0 1px, transparent 1.5px);
  background-position: 12px 21px, 37px 54px;
  background-size: 83px 83px, 119px 119px;
  opacity: 0.34;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

/* ---------- linhas de conexão ---------- */
/* atenção: a opacidade final de uma bolinha é o produto de três camadas —
   .lc-connections × .lc-connection × alfa da cor. Ajuste as três em conjunto. */
.lc-connections {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.82;
  transition: opacity 0.42s ease;
  pointer-events: none;
}

.lc-connection {
  position: absolute;
  top: -5px;
  left: 0;
  display: flex;
  height: 10px;
  color: rgba(255, 255, 255, 0.36);
  opacity: 0.52;
  transform-origin: 0 50%;
  align-items: center;
  justify-content: space-between;
  transition: color 0.24s ease, opacity 0.24s ease;
  will-change: width, transform;
}

/* pontos miúdos: são 10 por linha (ver constellation.js), o grão fino evita
   que a linha vire um tracejado grosso. */
.lc-dot {
  display: block;
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px transparent;
  transition: box-shadow 0.24s ease;
}

.lc-connection.is-highlighted,
.lc-connection.is-active {
  color: var(--coral);
  opacity: 1;
}

.lc-connection.is-highlighted .lc-dot,
.lc-connection.is-active .lc-dot {
  box-shadow: 0 0 12px rgba(253, 91, 59, 0.55);
}

/* no hover os pontos "correm" do satélite até o centro:
   reforça a ideia de tudo conectado à conversa. */
.lc-connection.is-highlighted .lc-dot {
  animation: lc-flow 1.15s ease-in-out infinite;
}

.lc-connection.is-highlighted .lc-dot:nth-child(1) { animation-delay: 0.9s; }
.lc-connection.is-highlighted .lc-dot:nth-child(2) { animation-delay: 0.8s; }
.lc-connection.is-highlighted .lc-dot:nth-child(3) { animation-delay: 0.7s; }
.lc-connection.is-highlighted .lc-dot:nth-child(4) { animation-delay: 0.6s; }
.lc-connection.is-highlighted .lc-dot:nth-child(5) { animation-delay: 0.5s; }
.lc-connection.is-highlighted .lc-dot:nth-child(6) { animation-delay: 0.4s; }
.lc-connection.is-highlighted .lc-dot:nth-child(7) { animation-delay: 0.3s; }
.lc-connection.is-highlighted .lc-dot:nth-child(8) { animation-delay: 0.2s; }
.lc-connection.is-highlighted .lc-dot:nth-child(9) { animation-delay: 0.1s; }
.lc-connection.is-highlighted .lc-dot:nth-child(10) { animation-delay: 0s; }

@keyframes lc-flow {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.45); }
}

/* ondas suaves saindo da logo (sonar) — dão profundidade e movimento */
.lc-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lc-waves span {
  position: absolute;
  width: clamp(120px, 17vmin, 158px);
  aspect-ratio: 1;
  border: 1px solid rgba(253, 91, 59, 0.4);
  border-radius: 50%;
  opacity: 0;
  animation: lc-sonar 7.5s ease-out infinite;
}

.lc-waves span:nth-child(2) { animation-delay: 2.5s; }
.lc-waves span:nth-child(3) { animation-delay: 5s; }

@keyframes lc-sonar {
  0% { opacity: 0.45; transform: scale(1); }
  70% { opacity: 0; transform: scale(4.6); }
  100% { opacity: 0; transform: scale(4.6); }
}

.lc-stage.is-offscreen .lc-waves span,
.lc-stage.is-busy .lc-waves span {
  animation-play-state: paused;
}

.lc-stage.is-busy .lc-connections {
  opacity: 0.08;
}

/* ---------- centro (o "o" da Lero) ---------- */
.lc-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(120px, 17vmin, 158px);
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: left 0.72s cubic-bezier(0.65, 0, 0.35, 1),
    width 0.72s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.42s ease, filter 0.42s ease;
  pointer-events: none;
}

.lc-center.is-shifted {
  left: 27%;
  width: clamp(102px, 13vmin, 132px);
  filter: saturate(0.8);
  opacity: 0.5;
}

.lc-center-breathe {
  display: block;
  width: 100%;
  transform-origin: 50% 50%;
  animation: lc-pulse 4.6s ease-in-out infinite;
  will-change: transform;
}

/* no preto a logo pede um halo coral suave para não flutuar sem apoio */
.lc-center-breathe img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(253, 91, 59, 0.28));
  user-select: none;
}

.lc-center figcaption {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: max-content;
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
  transform: translateX(-50%);
}

@keyframes lc-pulse {
  0%, 100% { transform: scale(0.985); }
  50% { transform: scale(1.045); }
}

.lc-stage.is-offscreen .lc-center-breathe,
.lc-stage.is-busy .lc-center-breathe {
  animation-play-state: paused;
}

/* ---------- módulos: ícones distribuídos ao redor da logo ---------- */
.lc-field {
  position: absolute;
  inset: 0;
  z-index: 4;
}

/* .lc-node = posicionador (base fixa) · .lc-node-inner = micro-movimento */
.lc-node {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: opacity 0.38s ease, filter 0.38s ease;
  will-change: transform;
}

.lc-node.is-dimmed {
  filter: blur(0.7px);
  opacity: 0.12;
  pointer-events: none;
}

.lc-node.is-selected {
  z-index: 30;
}

.lc-node-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}

/* satélite como "pastilha" clicável: cápsula escura com ícone coral */
.lc-feature-btn {
  position: relative;
  display: grid;
  width: clamp(52px, 6.8vmin, 66px);
  height: clamp(52px, 6.8vmin, 66px);
  padding: 0;
  border: 1px solid rgba(253, 91, 59, 0.34);
  border-radius: 50%;
  color: var(--coral-light);
  background: rgba(15, 20, 33, 0.94);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  place-items: center;
  transition: color 0.24s ease, background-color 0.24s ease,
    border-color 0.24s ease, box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.2, 0.9, 0.25, 1);
}

/* anel que pulsa no destaque automático e no hover — convida ao clique */
.lc-feature-btn::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
}

.lc-feature-btn:disabled {
  cursor: default;
}

.lc-feature-btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.lc-feature-icon {
  display: grid;
  width: clamp(26px, 3.4vmin, 32px);
  height: clamp(26px, 3.4vmin, 32px);
  place-items: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.lc-feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* hover/foco: pastilha "acende" em coral e cresce */
.lc-feature-btn:hover:not(:disabled),
.lc-feature-btn:focus-visible {
  color: #fff;
  border-color: var(--coral);
  background: var(--coral);
  box-shadow:
    0 16px 34px rgba(253, 91, 59, 0.4),
    0 0 0 6px rgba(253, 91, 59, 0.1);
  transform: translateY(-4px) scale(1.12);
}

.lc-feature-btn:hover:not(:disabled) .lc-feature-icon,
.lc-feature-btn:focus-visible .lc-feature-icon {
  transform: scale(1.06);
}

.lc-feature-btn:hover:not(:disabled)::before,
.lc-feature-btn:focus-visible::before {
  animation: lc-ring 1.5s ease-out infinite;
}

/* destaque automático: um satélite por vez chama atenção */
.lc-node.is-spot .lc-feature-btn {
  border-color: rgba(253, 91, 59, 0.62);
  box-shadow:
    0 12px 28px rgba(253, 91, 59, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px) scale(1.06);
}

.lc-node.is-spot .lc-feature-btn::before {
  animation: lc-ring 1.7s ease-out;
}

@keyframes lc-ring {
  0% { opacity: 0.6; transform: scale(0.82); }
  70% { opacity: 0; transform: scale(1.55); }
  100% { opacity: 0; transform: scale(1.55); }
}

/* nome sempre visível como rótulo do satélite */
.lc-feature-name {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  z-index: 20;
  width: max-content;
  max-width: 100px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
  text-shadow:
    0 1px 8px rgba(5, 7, 12, 0.98),
    0 0 14px rgba(5, 7, 12, 0.95);
  opacity: 1;
  transform: translateX(-50%);
  transition: color 0.2s ease;
  pointer-events: none;
}

/* hover/foco/destaque: o nome acende em coral */
.lc-node.is-hovered .lc-feature-name,
.lc-node.is-spot .lc-feature-name,
.lc-feature-btn:hover:not(:disabled) + .lc-feature-name,
.lc-feature-btn:focus-visible + .lc-feature-name {
  color: var(--coral-light);
  font-weight: 700;
}

/* entrada em cascata quando a seção aparece — dá vida ao conjunto */
.lc-stage .lc-node-inner {
  opacity: 0;
}

.lc-stage.is-entered .lc-node-inner {
  animation: lc-node-in 0.55s cubic-bezier(0.2, 0.9, 0.25, 1) forwards;
  animation-delay: calc(var(--i, 0) * 42ms);
}

.lc-stage.is-entered .lc-feature-btn {
  animation: lc-pop 0.6s cubic-bezier(0.2, 0.9, 0.25, 1);
  animation-delay: calc(var(--i, 0) * 42ms);
}

@keyframes lc-node-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lc-pop {
  0% { transform: scale(0.55); }
  62% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* módulo selecionado (ancorado no painel): ícone + nome em destaque */
.lc-node.is-selected .lc-node-inner {
  align-items: flex-start;
}

.lc-node.is-selected .lc-feature-btn {
  width: auto;
  height: auto;
  color: var(--coral-light);
  justify-items: start;
  transform: none;
}

.lc-node.is-selected .lc-feature-icon {
  width: clamp(40px, 6vmin, 54px);
  height: clamp(40px, 6vmin, 54px);
  filter: none;
  transform: none;
}

.lc-node.is-selected .lc-feature-name {
  position: static;
  max-width: 300px;
  margin-top: 12px;
  padding: 0;
  border-radius: 0;
  color: var(--coral-light);
  background: transparent;
  box-shadow: none;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: left;
  white-space: normal;
  opacity: 1;
  transform: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lc-veil {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: rgba(4, 6, 11, 0.62);
  opacity: 0;
  transition: opacity 0.42s ease;
  pointer-events: none;
}

.lc-veil.is-visible {
  opacity: 1;
}

/* ---------- painel de detalhes ---------- */
/* modal fixo: ocupa 70% da tela e passa por cima de cabeçalho e rodapé
   (anexado ao <html> no JS, fora do zoom do body). */
.lc-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 950;
  width: 70vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--radius-window) 0 0 var(--radius-window);
  color: var(--ink);
  background: var(--white);
  box-shadow: -24px 0 72px rgba(35, 40, 48, 0.22);
  opacity: 0;
  transform: translate3d(101%, 0, 0);
  transition: transform 0.62s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.24s ease;
  pointer-events: none;
}

/* trava o scroll da página enquanto o modal está aberto */
.lc-modal-open {
  overflow: hidden;
}

.lc-panel.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.lc-close {
  position: absolute;
  top: clamp(18px, 2.6vw, 28px);
  right: clamp(18px, 2.6vw, 28px);
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(35, 40, 48, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  place-items: center;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lc-close:hover {
  color: #fff;
  background: var(--coral);
  transform: rotate(4deg);
}

.lc-scroll {
  width: 100%;
  height: 100%;
  padding: clamp(56px, 7vh, 88px) clamp(28px, 4vw, 56px) clamp(36px, 6vh, 64px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(35, 40, 48, 0.26) transparent;
}

.lc-heading {
  max-width: 100%;
}

.lc-kicker {
  display: flex;
  margin-bottom: 20px;
  color: var(--body);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  align-items: center;
  gap: 11px;
  text-transform: uppercase;
}

.lc-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(253, 91, 59, 0.24);
  border-radius: 50%;
  color: var(--coral-action);
  background: rgba(253, 91, 59, 0.07);
  place-items: center;
}

.lc-panel-name {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-wrap: balance;
}

.lc-panel-lead {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.26;
  text-wrap: balance;
}

.lc-rule {
  width: 100%;
  height: 1px;
  margin: clamp(28px, 4vh, 44px) 0;
  background: linear-gradient(to right, var(--coral) 0 48px, rgba(35, 40, 48, 0.13) 48px);
}

/* topo: título | descrição, preenchendo a largura do modal */
.lc-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(32px, 4.5vw, 80px);
  align-items: start;
}

.lc-top-col {
  min-width: 0;
}

.lc-desc {
  margin: 0;
  color: var(--body);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.66;
}

/* imagem grande ocupando toda a largura disponível do modal */
.lc-media {
  width: 100%;
  margin-top: clamp(28px, 4vh, 44px);
}

/* carrossel — a moldura acompanha a proporção do print (≈1.84),
   então a imagem preenche tudo sem sobrar fundo. */
.lc-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1.84;
  max-height: 72vh;
  margin-top: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--off-white);
  touch-action: pan-y;
}

.lc-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.52s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.lc-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.lc-shot {
  width: 100%;
  height: 100%;
}

/* o print preenche a moldura inteira, sem borda interna nem espaço morto */
.lc-shot img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  user-select: none;
}

/* print com proporção diferente da moldura: encaixa inteiro, sem cortar */
.lc-shot img.is-contain {
  object-fit: contain;
  object-position: center;
  padding: clamp(10px, 2.2vw, 26px);
  background: var(--off-white);
}

/* prints clicáveis: abrem ampliadas por cima (lightbox do site) */
.lc-shot img.lc-zoom {
  cursor: zoom-in;
  transition: transform 0.35s ease;
}

.lc-shot img.lc-zoom:hover {
  transform: scale(1.02);
}

.lc-shot img.lc-zoom:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: -4px;
}

.lc-slide.is-support .lc-shot {
  display: grid;
  place-items: center;
}

.lc-slide.is-support .lc-shot img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
}

/* legenda fora da moldura */
.lc-gallery {
  width: 100%;
}

.lc-caption {
  margin: 12px 0 0;
  color: var(--body);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
}

.lc-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(35, 40, 48, 0.15);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transform: translateY(-50%);
  place-items: center;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.lc-arrow:hover {
  color: #fff;
  background: var(--coral);
}

.lc-prev { left: 14px; }
.lc-next { right: 14px; }

/* sobre a imagem: cápsula com fundo para dar contraste */
.lc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 3;
  display: flex;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(35, 40, 48, 0.55);
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lc-cdot {
  width: 22px;
  height: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lc-cdot::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background-color 0.18s ease;
}

.lc-cdot.is-active::after {
  background: #fff;
}

.lc-cdot.is-active::after {
  background: var(--coral);
}

/* módulos relacionados */
.lc-related {
  display: grid;
  margin-top: clamp(28px, 4vh, 44px);
  gap: 14px;
}

.lc-related > span {
  color: var(--body);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lc-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.lc-related > div span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

.lc-back {
  min-height: 48px;
  margin-top: 30px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--coral);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  box-shadow: 0 10px 26px rgba(253, 91, 59, 0.32);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.lc-back:hover {
  background: #ff7256;
  transform: translateY(-2px);
}

/* Ao abrir um módulo, o painel mantém o mesmo palco preto da constelação. */
.lc-panel {
  --lc-panel-line: rgba(255, 255, 255, 0.12);

  border-color: var(--lc-panel-line);
  color: #f7f5f2;
  background:
    radial-gradient(circle at 12% 0%, rgba(253, 91, 59, 0.09), transparent 30rem),
    #05070c;
  box-shadow: -24px 0 72px rgba(0, 0, 0, 0.52);
}

.lc-panel .lc-scroll {
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.lc-panel .lc-close {
  border-color: var(--lc-panel-line);
  color: #f7f5f2;
  background: rgba(255, 255, 255, 0.06);
}

.lc-panel .lc-close:hover {
  color: #fff;
  background: var(--coral);
}

.lc-panel .lc-kicker,
.lc-panel .lc-desc,
.lc-panel .lc-caption,
.lc-panel .lc-related > span {
  color: #aab1bf;
}

.lc-panel .lc-panel-name,
.lc-panel .lc-panel-lead {
  color: #f7f5f2;
}

.lc-panel .lc-icon {
  border-color: rgba(253, 91, 59, 0.34);
  color: #ff8b74;
  background: rgba(253, 91, 59, 0.12);
}

.lc-panel .lc-rule {
  background: linear-gradient(to right, var(--coral) 0 48px, rgba(255, 255, 255, 0.14) 48px);
}

.lc-panel .lc-related > div span {
  border-color: var(--lc-panel-line);
  color: #f7f5f2;
  background: rgba(255, 255, 255, 0.05);
}

.lc-panel .lc-carousel {
  border-color: var(--lc-panel-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.lc-panel .lc-back {
  color: #fff;
}

/* ---------- responsivo ---------- */
@media (max-width: 879px) {
  .lc-panel {
    width: 86vw;
  }
  .lc-panel-name {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }
  /* empilha o topo em coluna única quando o modal fica estreito */
  .lc-top {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 32px);
  }
  .lc-carousel {
    height: clamp(340px, 44vh, 500px);
  }
}

@media (max-width: 820px) {
  .lc-shell {
    height: clamp(650px, 86vh, 850px);
  }
}

@media (max-width: 719px) {
  .lc-stage::before {
    opacity: 0.18;
  }
  .lc-dot {
    width: 5px;
    height: 5px;
    flex-basis: 5px;
  }
  .lc-dot:nth-child(n + 5) {
    display: none;
  }
  .lc-center {
    top: 50%;
    width: clamp(66px, 19vw, 88px);
  }
  .lc-center figcaption {
    top: calc(100% - 3px);
    max-width: 165px;
    font-size: 7px;
    letter-spacing: 0.1em;
  }
  .lc-center.is-shifted {
    left: 50%;
    width: 78px;
    opacity: 0.22;
  }
  .lc-feature-btn {
    width: clamp(32px, 8.6vw, 40px);
    height: clamp(32px, 8.6vw, 40px);
  }
  .lc-feature-icon {
    width: clamp(18px, 4.8vw, 21px);
    height: clamp(18px, 4.8vw, 21px);
  }
  .lc-feature-name {
    max-width: 54px;
    font-size: 9px;
    line-height: 1.08;
  }
  .lc-node.is-selected .lc-feature-name {
    max-width: 300px;
  }
  .lc-node.is-selected .lc-node-inner {
    max-width: calc(100% - 36px);
  }
  .lc-node.is-selected .lc-feature-name {
    font-size: clamp(23px, 8vw, 31px);
  }
  .lc-panel {
    width: 100vw;
    border-radius: 0;
    border-right: 0;
  }
  .lc-close {
    top: 14px;
    right: 14px;
  }
  .lc-scroll {
    padding: 66px 20px 40px;
  }
  .lc-heading {
    padding-right: 36px;
  }
  .lc-carousel {
    height: 300px;
  }
  .lc-shot img {
    max-height: 210px;
  }
  .lc-back {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .lc-shell {
    height: 660px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lc-center-breathe,
  .lc-center-breathe img,
  .lc-waves span,
  .lc-connection .lc-dot,
  .lc-feature-btn::before,
  .lc-stage.is-entered .lc-feature-btn {
    animation: none !important;
  }
  /* sem cascata: os satélites já aparecem visíveis */
  .lc-stage .lc-node-inner,
  .lc-stage.is-entered .lc-node-inner {
    opacity: 1;
    animation: none !important;
  }
  .lc-track,
  .lc-panel,
  .lc-center,
  .lc-node,
  .lc-node-inner,
  .lc-veil {
    transition-duration: 1ms;
  }
}

/* ---------- botão de som ambiente ---------- */

.ambient-toggle {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-pill);
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(var(--blur));
  backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-card);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease, border-color 0.25s ease;
}

.ambient-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-shot);
}

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

.ambient-toggle.is-on {
  background: var(--coral);
  border-color: transparent;
  color: var(--white);
}

.ambient-ico {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}

.ambient-ico .wv {
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.65;
}

.ambient-toggle.is-on .ambient-ico .wv {
  animation: ambient-wave 1.1s ease-in-out infinite;
}

.ambient-toggle.is-on .ambient-ico .wv:nth-child(2) {
  animation-delay: 0.18s;
}

.ambient-toggle.is-on .ambient-ico .wv:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes ambient-wave {
  0%, 100% { height: 6px; opacity: 0.6; }
  50% { height: 15px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-toggle {
    transition-duration: 1ms;
  }
  .ambient-toggle.is-on .ambient-ico .wv {
    animation: none;
    height: 11px;
  }
}

/* ---------- documentos legais ---------- */

.legal-main {
  min-height: 70vh;
  padding: clamp(7rem, 12vw, 10rem) 0 var(--sec-y);
  background:
    radial-gradient(circle at 50% 0, rgba(253, 91, 59, 0.14), transparent 34rem),
    var(--off-white);
}

.legal-shell {
  width: min(100%, 900px);
  margin-inline: auto;
}

.legal-document {
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.legal-document > h1 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font: 700 var(--fs-section) / 1.08 var(--font-display);
  text-align: center;
}

.legal-updated {
  margin: 0 0 2.5rem;
  color: var(--body);
  text-align: center;
}

.legal-document h2 {
  margin: 2.4rem 0 0.85rem;
  color: var(--ink);
  font: 700 clamp(1.15rem, 2vw, 1.4rem) / 1.25 var(--font-display);
}

.legal-document h3 {
  margin: 1.5rem 0 0.6rem;
  color: var(--ink);
  font: 700 1.05rem / 1.35 var(--font-display);
}

.legal-document p,
.legal-document li,
.legal-document td,
.legal-document th {
  color: var(--body);
  font: 400 var(--fs-body) / 1.75 var(--font-body);
}

.legal-document p {
  margin: 0 0 1rem;
}

.legal-document ul {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.5rem;
}

.legal-document li + li {
  margin-top: 0.45rem;
}

.legal-document a {
  color: var(--coral-action);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.legal-table-wrap {
  margin: 1rem 0 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-document table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.legal-document th,
.legal-document td {
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-document th {
  color: var(--ink);
  font-weight: 700;
  background: var(--soft);
}

.legal-document tr:last-child td {
  border-bottom: 0;
}

.legal-document th:last-child,
.legal-document td:last-child {
  border-right: 0;
}

@media (max-width: 640px) {
  .legal-main {
    padding-top: 6rem;
  }

  .legal-document {
    border-radius: 18px;
  }
}
