@font-face {
  font-family: Inter;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg-primary: #0f1115;
  --bg-secondary: #14161d;
  --bg-glass: #ffffff06;
  --border-glass: #d3c7ff1f;
  --color-primary: #7c3aed;
  --color-accent: #bd9cff;
  --text-primary: #f8fafc;
  --text-secondary: #acb2c3;
  --text-muted: #969eaf;
  --section-spacing: 100px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  font:
    15px/1.75 Inter,
    system-ui,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
ul {
  list-style: none;
}
p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
strong {
  font-weight: 600;
}
h1,
h2,
h3,
h4 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.2rem;
}
:focus-visible {
  outline: 3px solid #d2bbff;
  outline-offset: 5px;
  border-radius: 4px;
}
[hidden] {
  display: none !important;
}
.container {
  width: calc(100% - 80px);
  max-width: 1180px;
  margin-inline: auto;
}
.section {
  padding: var(--section-spacing) 0;
}
.bg-darker {
  background: var(--bg-secondary);
  border-block: 1px solid #ffffff09;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  max-width: 750px;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.section-desc {
  font-size: 1.05rem;
  max-width: 630px;
}
.section-header {
  margin-bottom: 2.6rem;
}
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text-center {
  text-align: center;
}
.text-center.section-title {
  margin-inline: auto;
}
.max-w-3xl {
  max-width: 780px;
}
.mx-auto {
  margin-inline: auto;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.text-secondary {
  color: var(--text-secondary);
}
.text-light {
  color: #c2c7d2;
}
.text-sm {
  font-size: 0.86rem;
}
.text-primary,
.highlight {
  color: var(--color-accent);
}
.eyebrow {
  display: block;
  color: var(--color-accent);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-block;
  border: 1px solid #b590ff38;
  background: #7c3aed17;
  border-radius: 99px;
  color: #c6aaff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.38rem 0.85rem;
  margin-bottom: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
  text-align: center;
}
.btn-primary {
  background: #7c3aed;
  color: #fff;
  border-color: #9256f4;
  box-shadow: 0 4px 20px #7c3aed19;
}
.btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}
.btn-secondary {
  background: #ffffff04;
  color: #e2e0ea;
  border-color: #ffffff24;
}
.btn-secondary:hover {
  background: #ffffff09;
  border-color: #b99be96b;
}
.btn-lg {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}
.text-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--color-accent);
  border-bottom: 1px solid #bd9cff50;
  padding-block: 8px;
  font-weight: 500;
  margin-top: 1rem;
}
.glass {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  z-index: 2000;
  background: #fff;
  color: #111;
  padding: 10px 18px;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: #0f1115ed;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ffffff0b;
}
.header-content {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  flex-shrink: 0;
}
.logo-img {
  width: 217px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  color: #b7bdca;
}
.nav-links a:hover {
  color: #e0d0ff;
}
.nav-cta {
  font-size: 0.78rem;
  min-height: 42px;
  padding: 0.65rem 1rem;
}
.menu-toggle {
  border: 1px solid var(--border-glass);
  background: transparent;
  color: white;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 8px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.hero {
  position: relative;
  padding: 160px 0 90px;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 35%, #7c3aed0e, transparent 55%);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c0a0ff29, transparent);
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 80% 60%, #7c3aed10, transparent 50%);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content {
  max-width: 640px;
}
.hero-title {
  font-size: clamp(2.3rem, 3.75vw, 3.3rem);
  line-height: 1.13;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-bottom: 1.65rem;
  text-wrap: balance;
}
.hero-title .highlight {
  display: block;
  margin-top: 0.16em;
}
.hero-subtitle {
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.hero-overline {
  font-size: 0.77rem;
  color: #d2c7e6;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.glow-sphere {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #7c3aed24;
  filter: blur(45px);
}
.orbit {
  position: absolute;
  border: 1px solid #b197fc15;
  border-radius: 50%;
  width: 310px;
  height: 310px;
}
.orbit-two {
  width: 420px;
  height: 420px;
  border-style: dashed;
  border-color: #b197fc12;
}
.connection-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 205px;
  height: 205px;
  border: 1px solid #bca0ff2b;
  background: radial-gradient(circle at top, #58398647, #171320d9 80%);
  border-radius: 50%;
  box-shadow:
    inset 0 0 35px #c9afff06,
    0 0 70px #7c3aed12;
}
.connection-core strong {
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  margin-top: 8px;
}
.connection-core > span:last-child {
  font-size: 0.63rem;
  color: #b0a4c5;
}
.core-symbol {
  font-size: 3rem;
  line-height: 1;
  color: #c5a3ff;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  font-size: 0.76rem;
  font-weight: 500;
  box-shadow: 0 12px 35px #0003;
  background: linear-gradient(120deg, #282132ed, #18181ff2);
  border-color: #cbb4ff20;
  border-radius: 10px;
  white-space: nowrap;
}
.floating-card.c1 {
  top: 16%;
  left: 0;
}
.floating-card.c2 {
  top: 46%;
  right: -2%;
}
.floating-card.c3 {
  bottom: 12%;
  left: 2%;
}
.floating-card.c4 {
  top: 3%;
  right: 3%;
}
.floating-card.c5 {
  bottom: 0;
  right: 1%;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #bd9cff;
  box-shadow: 0 0 12px #bd9cff50;
}
.pulse-dot.green {
  background: #bd9cff;
}
.lead-text {
  max-width: 770px;
  margin: 0 auto 2.8rem;
  text-align: center;
  font-size: 1.13rem;
  line-height: 1.75;
  color: #c5c9d3;
}
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.sobre-card {
  padding: 30px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.sobre-card:hover {
  border-color: #bd9cff40;
  transform: translateY(-3px);
}
.sobre-card p {
  margin: 0;
  font-size: 0.94rem;
}
.icon-wrapper,
.solucao-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7c3aed12;
  color: #b99ae9;
  border: 1px solid #b99ae91c;
  margin-bottom: 24px;
}
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.solucao-card {
  grid-column: span 2;
  background: #0f11157a;
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 32px;
  transition: border-color 0.2s;
}
.solucao-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}
.solucao-card:hover {
  border-color: #bd9cff50;
}
.solucao-card h3 {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  max-width: 290px;
}
.solucao-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.8;
}
.crm-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}
.crm-content p {
  font-size: 0.94rem;
}
.crm-content .section-title {
  max-width: 440px;
}
.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.86rem;
}
.feature-list li::before {
  content: "✓";
  color: var(--color-accent);
}
.crm-visual {
  min-width: 0;
}
.dashboard-mockup {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #c4a5ff26;
  background: linear-gradient(145deg, #211b2b, #15161e 55%);
  box-shadow: 0 25px 80px #0004;
  position: relative;
}
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.mockup-label {
  color: #a3a6b7;
  font-size: 0.66rem;
}
.mini-mark {
  color: #bd9cff;
  font-size: 1.2rem;
  margin-right: 5px;
}
.demo-badge {
  border: 1px solid #ffffff1a;
  border-radius: 5px;
  padding: 3px 7px;
  font-size: 0.6rem;
  color: #bcb4cc;
  font-weight: 400;
}
.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-top: 24px;
}
.dashboard-heading .eyebrow {
  font-size: 0.55rem;
  margin-bottom: 8px;
}
.dashboard-heading h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.connected-dot {
  font-size: 0.58rem;
  color: #a8d8ba;
  white-space: nowrap;
  margin-top: 3px;
}
.connected-dot::before {
  content: "●";
  color: #69d994;
  margin-right: 5px;
}
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 24px;
}
.mockup-stats > div {
  background: #ffffff03;
  border: 1px solid #ffffff0b;
  padding: 13px 10px;
  border-radius: 8px;
}
.mockup-stats span {
  display: block;
  font-size: 0.6rem;
  color: #a4a4b4;
  margin-bottom: 3px;
}
.mockup-stats strong {
  font-size: 0.76rem;
  font-weight: 500;
}
.mockup-kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.kanban-col {
  min-width: 0;
  border-radius: 8px;
  background: #09090f40;
  padding: 8px;
}
.kanban-col h4 {
  font-size: 0.58rem;
  letter-spacing: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 14px;
}
.kanban-col i {
  display: block;
  width: 4px;
  height: 4px;
  background: #a985ed;
  border-radius: 50%;
}
.kanban-col:nth-child(2) i {
  background: #75baec;
}
.kanban-col:nth-child(3) i {
  background: #7ce1a2;
}
.kanban-item {
  background: #23222d;
  border: 1px solid #ffffff0d;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
}
.kanban-item strong {
  display: block;
  font-size: 0.62rem;
  line-height: 1.5;
  font-weight: 500;
}
.kanban-item small {
  display: block;
  font-size: 0.53rem;
  color: #a5a4b5;
  line-height: 1.6;
  margin-top: 5px;
}
.lead-avatar {
  display: block;
  width: 25px;
  height: 25px;
  background: #b89aff12;
  color: #b89aff;
  border-radius: 50%;
  font-size: 0.54rem;
  text-align: center;
  line-height: 25px;
  margin-bottom: 12px;
}
.lead-tag {
  display: inline-block;
  font-size: 0.46rem;
  padding: 3px 5px;
  border: 1px solid #bc99ff26;
  color: #c5a9f9;
  border-radius: 4px;
  margin-top: 14px;
  line-height: 1.5;
}
.lead-tag.green {
  border-color: #8addad20;
  color: #a5daba;
}
.dashboard-note {
  font-size: 0.63rem;
  color: #ae9fc4;
  border-top: 1px solid var(--border-glass);
  margin-top: 20px;
  padding-top: 14px;
  display: flex;
  gap: 8px;
}
figcaption {
  font-size: 0.65rem;
  color: #a0a5b3;
  text-align: center;
  margin-top: 15px;
}
.wa-container {
  padding: 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 30px;
  background: radial-gradient(ellipse at top left, #25d36607, transparent 65%);
}
.wa-icon {
  padding: 15px;
  background: #25d36608;
  border: 1px solid #25d3661a;
  border-radius: 16px;
}
.wa-content .section-title {
  font-size: 2rem;
  max-width: 690px;
}
.wa-content p {
  max-width: 800px;
}
.wa-features {
  grid-column: 2;
}
.wa-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wa-features li {
  padding: 7px 13px;
  border: 1px solid #ffffff13;
  border-radius: 6px;
  color: #c1c9c6;
  font-size: 0.75rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 25px;
  right: 25px;
  height: 1px;
  background: #a98ee82c;
}
.timeline-item {
  position: relative;
}
.tl-step {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #17131f;
  color: #c4a6fc;
  border: 1px solid #ad81f94a;
  border-radius: 50%;
  font-size: 0.8rem;
  margin-bottom: 25px;
}
.tl-content h3 {
  font-size: 1rem;
}
.tl-content p {
  font-size: 0.82rem;
  line-height: 1.8;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.split-col .section-title {
  font-size: 2.2rem;
}
.split-col p {
  font-size: 0.94rem;
}
.icon-accent {
  color: var(--color-accent);
  margin-bottom: 24px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.check-list li::before {
  content: "✓";
  color: var(--color-accent);
}
.sobre-empresa .section-title {
  margin-inline: auto;
}
.dados-box {
  padding: 45px;
  background: radial-gradient(ellipse at top, #7c3aed09, transparent 70%);
}
.dados-box .section-title {
  font-size: 1.65rem;
}
.dados-box p {
  font-size: 0.9rem;
}
.docs-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 25px;
}
.doc-link {
  color: var(--color-accent);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.divider {
  color: #716880;
}
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a0b0f;
  border-top: 1px solid #ffffff09;
  padding: 90px 0 25px;
}
.footer-bg-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at top, #7c3aed10, transparent 60%);
}
.footer-hero {
  margin-bottom: 85px;
}
.footer-mega-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
}
.footer-subtitle {
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 1rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 35px;
  padding: 45px 0;
  border-top: 1px solid var(--border-glass);
}
.footer-logo {
  width: 210px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
}
.footer-links-group h3 {
  font-size: 0.85rem;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer-links-group li {
  margin-bottom: 10px;
}
.footer-links-group a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  overflow-wrap: anywhere;
}
.footer-links-group a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.65rem;
  margin: 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.65rem;
  color: var(--text-secondary);
}
.text-button {
  background: none;
  color: inherit;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
}
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #072711;
  border: 1px solid #7aeda3;
  border-radius: 99px;
  padding: 14px;
  box-shadow: 0 5px 25px #0004;
  font-size: 0.78rem;
  font-weight: 600;
}
.floating-whatsapp span {
  display: none;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
}
body.consent-visible .floating-whatsapp {
  visibility: hidden;
}
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 36px));
  z-index: 200;
  background: #1b1a24;
  border: 1px solid #a888e444;
  border-radius: 14px;
  box-shadow: 0 12px 60px #0008;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.cookie-banner strong {
  font-size: 0.85rem;
}
.cookie-banner p {
  font-size: 0.73rem;
  line-height: 1.6;
  margin: 5px 0 0;
}
.cookie-banner a {
  color: #cdb4ff;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  font-size: 0.72rem;
  min-height: 42px;
  padding: 10px 14px;
}
dialog {
  margin: auto;
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  background: #191820;
  color: var(--text-primary);
  border: 1px solid #c4a5ff44;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 25px 100px #0008;
}
dialog::backdrop {
  background: #05050bc9;
  backdrop-filter: blur(4px);
}
dialog p {
  font-size: 0.82rem;
  line-height: 1.7;
}
.dialog-heading {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  justify-content: space-between;
}
.dialog-heading h2 {
  font-size: 1.4rem;
}
.dialog-close {
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff24;
  background: none;
  color: #ddd;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.cookie-option {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding: 18px 0;
}
.cookie-option strong {
  font-size: 0.9rem;
}
.cookie-option p {
  font-size: 0.75rem;
  margin: 4px 0 0;
}
.cookie-option > span {
  font-size: 0.65rem;
  white-space: nowrap;
  color: #c4b2e0;
}
.cookie-option input {
  width: 21px;
  height: 21px;
  accent-color: #9359f5;
  flex-shrink: 0;
}
.cookie-option:has(input) {
  cursor: pointer;
}
dialog .cookie-actions {
  justify-content: flex-end;
  padding-top: 14px;
}
.legal-main {
  padding: 150px 0 80px;
}
.back-link {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 40px;
}
.legal-main .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-main .content-text {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
}
.content-text h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
}
.content-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-text ul {
  list-style: disc;
  padding-left: 1.3rem;
}
.content-text p,
.content-text li {
  font-size: 0.94rem;
}
.legal-identity {
  border: 1px solid var(--border-glass);
  padding: 18px 22px;
  border-radius: 10px;
}
.legal-identity p:last-child {
  margin-bottom: 0;
}
.legal-page .footer {
  padding-top: 15px;
}
.legal-page .footer-main {
  border-top: 0;
}
.animate-up,
.animate-in {
  opacity: 1;
  transform: none;
}
.reveal-active {
  animation: reveal 0.55s ease-out both;
}
@keyframes reveal {
  from {
    opacity: 0.45;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }
}
@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }
  .main-nav {
    gap: 20px;
  }
  .hero-layout {
    gap: 30px;
  }
  .hero-visual {
    height: 420px;
  }
  .floating-card {
    font-size: 0.65rem;
    padding: 10px 12px;
  }
  .orbit-two {
    width: 350px;
    height: 350px;
  }
  .orbit-one {
    width: 270px;
    height: 270px;
  }
  .connection-core {
    width: 180px;
    height: 180px;
  }
  .crm-layout {
    gap: 30px;
  }
  .dashboard-mockup {
    padding: 15px;
  }
  .dashboard-heading {
    display: block;
  }
  .connected-dot {
    display: block;
    margin-bottom: 8px;
  }
  .cookie-banner {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
  .cookie-actions {
    flex-shrink: 1;
  }
}
@media (max-width: 900px) {
  :root {
    --section-spacing: 75px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .header-content {
    height: auto;
    min-height: 76px;
    flex-wrap: wrap;
  }
  .logo-img {
    width: 192px;
  }
  .main-nav {
    width: 100%;
    padding: 12px 0 24px;
    flex-wrap: wrap;
  }
  .js-menu .main-nav {
    display: none;
  }
  .js-menu .main-nav.active {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    padding: 26px 24px;
    background: #12131bf7;
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    align-items: stretch;
  }
  .js-menu .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .js-menu .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
  }
  .hero {
    padding: 128px 0 65px;
  }
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-visual {
    height: 390px;
  }
  .floating-card.c2 {
    right: 0;
    top: 48%;
  }
  .floating-card.c3 {
    bottom: 13%;
    left: 0;
  }
  .floating-card.c4 {
    top: 0;
    right: 0;
  }
  .floating-card.c1 {
    top: 15%;
  }
  .floating-card.c5 {
    right: 0;
    bottom: 0;
  }
  .orbit-two {
    width: 290px;
    height: 290px;
  }
  .orbit-one {
    width: 230px;
    height: 230px;
  }
  .connection-core {
    width: 155px;
    height: 155px;
  }
  .connection-core strong {
    font-size: 0.9rem;
  }
  .connection-core > span:last-child {
    font-size: 0.52rem;
  }
  .crm-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .crm-content .section-title {
    max-width: 660px;
  }
  .crm-visual {
    width: min(630px, 100%);
    margin: auto;
  }
  .dashboard-mockup {
    padding: 24px;
  }
  .dashboard-heading {
    display: flex;
  }
  .sobre-grid {
    gap: 14px;
  }
  .sobre-card,
  .solucao-card {
    padding: 24px;
  }
  .timeline {
    gap: 16px;
  }
  .timeline p {
    font-size: 0.76rem;
  }
  .split-grid {
    gap: 35px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    padding-bottom: 70px;
  }
}
@media (max-width: 640px) {
  :root {
    --section-spacing: 60px;
  }
  body {
    font-size: 14px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-content {
    gap: 14px;
  }
  .logo-img {
    width: 183px;
  }
  .hero {
    padding: 116px 0 48px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-title {
    font-size: clamp(2rem, 7.8vw, 2.9rem);
    line-height: 1.16;
    letter-spacing: -0.045em;
    max-width: 530px;
  }
  .hero-content {
    width: 100%;
  }
  .hero .badge {
    font-size: 0.65rem;
    margin-bottom: 22px;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.75;
  }
  .hero-overline {
    font-size: 0.72rem;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 160px;
    font-size: 0.8rem;
    padding: 14px 12px;
  }
  .hero-visual {
    height: auto;
    min-height: 250px;
    padding: 34px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    align-content: center;
  }
  .connection-core {
    grid-column: 1/-1;
    width: auto;
    height: auto;
    border: 0;
    background: none;
    box-shadow: none;
    order: -1;
    margin-bottom: 16px;
  }
  .core-symbol {
    font-size: 2rem;
  }
  .connection-core strong {
    font-size: 1rem;
  }
  .connection-core > span:last-child {
    font-size: 0.65rem;
  }
  .floating-card {
    position: static !important;
    white-space: normal;
    font-size: 0.65rem;
    min-height: 43px;
    padding: 10px;
    justify-content: center;
    gap: 7px;
  }
  .floating-card.c5 {
    grid-column: 1/-1;
    justify-self: center;
    min-width: 180px;
  }
  .orbit {
    display: none;
  }
  .glow-sphere {
    width: 200px;
    height: 200px;
    left: calc(50% - 100px);
    top: 0;
    z-index: -1;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .section-desc {
    font-size: 0.95rem;
  }
  .eyebrow {
    font-size: 0.62rem;
    margin-bottom: 16px;
  }
  .lead-text {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sobre-card {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 18px;
    padding: 23px;
  }
  .sobre-card .icon-wrapper {
    width: 38px;
    height: 38px;
    margin: 0;
  }
  .sobre-card p {
    font-size: 0.86rem;
  }
  .solucoes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .solucao-card,
  .solucao-card:nth-last-child(-n + 2) {
    grid-column: auto;
    padding: 25px;
  }
  .solucao-card p {
    font-size: 0.86rem;
  }
  .solucao-icon {
    margin-bottom: 20px;
  }
  .crm-content p {
    font-size: 0.9rem;
  }
  .dashboard-mockup {
    padding: 15px;
  }
  .dashboard-heading {
    display: block;
  }
  .dashboard-heading h3 {
    font-size: 1.3rem;
  }
  .connected-dot {
    font-size: 0.63rem;
  }
  .mockup-stats {
    gap: 6px;
  }
  .mockup-stats > div {
    padding: 10px 8px;
  }
  .mockup-stats strong {
    font-size: 0.67rem;
  }
  .mockup-kanban {
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kanban-col:last-child {
    grid-column: 1/-1;
  }
  .kanban-col:last-child .kanban-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    align-items: center;
  }
  .kanban-col:last-child .lead-avatar {
    grid-row: span 3;
    margin: 0;
  }
  .kanban-col:last-child .lead-tag {
    justify-self: start;
    margin-top: 6px;
  }
  .kanban-col h4 {
    font-size: 0.6rem;
  }
  .kanban-item strong {
    font-size: 0.68rem;
  }
  .kanban-item small {
    font-size: 0.6rem;
  }
  .lead-tag {
    font-size: 0.52rem;
  }
  .wa-container {
    padding: 25px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .wa-icon {
    width: 60px;
    padding: 12px;
  }
  .wa-content .section-title {
    font-size: 1.65rem;
  }
  .wa-content p {
    font-size: 0.87rem;
  }
  .wa-features {
    grid-column: auto;
  }
  .wa-features li {
    font-size: 0.7rem;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .timeline::before {
    left: 21px;
    top: 20px;
    bottom: 30px;
    width: 1px;
    height: auto;
    right: auto;
  }
  .timeline-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 22px;
  }
  .tl-step {
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .tl-content {
    padding-top: 3px;
  }
  .tl-content h3 {
    margin-bottom: 8px;
  }
  .tl-content p {
    font-size: 0.88rem;
    margin: 0;
  }
  .split-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .split-col .section-title {
    font-size: 1.8rem;
  }
  .split-col p {
    font-size: 0.9rem;
  }
  .check-list li {
    font-size: 0.85rem;
  }
  .dados-box {
    padding: 28px 22px;
  }
  .dados-box .section-title {
    font-size: 1.55rem;
  }
  .docs-links {
    flex-direction: column;
    gap: 14px;
  }
  .docs-links .divider {
    display: none;
  }
  .footer {
    padding-top: 65px;
  }
  .footer-hero {
    margin-bottom: 45px;
  }
  .footer-mega-title {
    font-size: 2.6rem;
  }
  .footer-subtitle {
    font-size: 0.9rem;
  }
  .footer-main {
    gap: 30px 20px;
    padding: 30px 0;
  }
  .footer-logo {
    width: 190px;
  }
  .footer-links-group h3 {
    font-size: 0.78rem;
  }
  .footer-links-group a {
    font-size: 0.75rem;
  }
  .footer-bottom {
    gap: 18px;
  }
  .floating-whatsapp {
    bottom: 14px;
    right: 14px;
    padding: 11px 15px;
    min-height: 46px;
  }
  .floating-whatsapp span {
    display: inline;
  }
  .floating-whatsapp img {
    width: 22px;
    height: 22px;
  }
  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 18px;
    gap: 14px;
    max-height: calc(100dvh - 30px);
    overflow-y: auto;
  }
  .cookie-banner p {
    font-size: 0.7rem;
  }
  .cookie-actions {
    width: 100%;
    gap: 6px;
  }
  .cookie-actions .btn {
    flex: 1 1 auto;
    font-size: 0.65rem;
    padding: 9px;
    min-height: 40px;
  }
  dialog {
    padding: 22px;
  }
  .dialog-heading h2 {
    font-size: 1.25rem;
  }
  .cookie-option {
    gap: 16px;
  }
  .cookie-option > span {
    font-size: 0.58rem;
  }
  .legal-main {
    padding-top: 115px;
  }
  .legal-main .section-title {
    font-size: 2rem;
  }
  .legal-main .content-text p {
    font-size: 0.9rem;
  }
  .legal-main .content-text h2 {
    font-size: 1.15rem;
  }
  .back-link {
    margin-bottom: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
html:not(.js-menu) .header {
  position: relative;
}
html:not(.js-menu) .hero {
  padding-top: 52px;
}
html:not(.js-menu) .legal-main {
  padding-top: 52px;
}
