/* =========================================================
   Vendit — Landing Page
   Sistema de design: tokens em :root, mobile-first.
   ========================================================= */

/* === Tokens === */
:root {
  /* Cores da marca */
  --brand-primary: #5B17C9;
  --brand-primary-dark: #3D0E8C;
  --accent: #22E2A4;
  --accent-dark: #13B380;

  /* Texto */
  --ink: #0F0B1F;
  --ink-2: #4A4560;
  --muted: #6E6880;

  /* Superfícies */
  --line: #EDEAF3;
  --surface: #FFFFFF;
  --surface-2: #F7F5FB;
  --surface-dark: #0F0B1F;

  /* Tipografia */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-xs: 0.875rem;
  --fs-sm: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 2.75rem;
  --fs-3xl: 3.5rem;

  /* Espaçamento (múltiplos de 4) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;

  /* Bordas e sombras */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 11, 31, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 11, 31, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul, ol, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.container--narrow { max-width: 760px; }

.section {
  padding: var(--s-16) 0;
}
@media (min-width: 1024px) {
  .section { padding: var(--s-24) 0; }
}

.section--alt { background: var(--surface-2); }

.center { text-align: center; }
.center.hero__ctas { justify-content: center; }

.section__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--s-8);
  color: var(--ink);
}
@media (min-width: 768px) {
  .section__title { font-size: clamp(2rem, 3.5vw, 2.5rem); }
}

.section__lead {
  font-size: var(--fs-md);
  color: var(--ink-2);
  margin-bottom: var(--s-6);
}

/* === Botões === */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--sm { padding: 10px 18px; font-size: var(--fs-xs); }

.btn--primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--brand-primary-dark); }

.btn--secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--secondary:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.btn--ghost {
  background: transparent;
  color: var(--brand-primary);
  padding: 14px 8px;
}
.btn--ghost:hover { text-decoration: underline; }

.btn--ghost-on-dark { color: #fff; }

.btn--accent {
  background: var(--accent);
  color: var(--ink);
}
.btn--accent:hover { background: var(--accent-dark); }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding-top: var(--s-2);
  padding-bottom: var(--s-2);
  position: relative;
}
.brand { display: inline-flex; align-items: center; gap: var(--s-3); }
.brand img { height: 44px; width: auto; display: block; }
@media (min-width: 768px) {
  .brand img { height: 52px; }
}
.brand__tag {
  display: none;
  font-size: var(--fs-xs);
  color: var(--ink-2);
  border-left: 1px solid var(--line);
  padding-left: var(--s-3);
  line-height: 1.2;
  max-width: 14ch;
}
@media (min-width: 1024px) {
  .brand__tag { display: inline-block; }
}
/* Hamburger toggle (CSS-only) */
.nav-toggle { display: none; }
.nav-burger {
  margin-left: auto;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--r-sm);
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms, opacity 200ms;
}
.nav-toggle:checked + .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked + .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav: drawer no mobile, inline no desktop */
.nav {
  display: none;
  flex-direction: column;
  gap: var(--s-3);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: var(--s-4) var(--s-6);
  box-shadow: var(--shadow-md);
}
.nav-toggle:checked ~ .nav { display: flex; }
.nav a {
  color: var(--ink);
  font-size: var(--fs-md);
  font-weight: 500;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.nav a:last-child { border-bottom: none; }
.nav a:hover { color: var(--brand-primary); text-decoration: none; }
.nav__cta { margin-top: var(--s-2); text-align: center; }

@media (min-width: 768px) {
  .nav-burger { display: none; }
  .nav {
    display: flex;
    flex-direction: row;
    position: static;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    align-items: center;
    gap: var(--s-6);
  }
  .nav a {
    font-size: var(--fs-sm);
    color: var(--ink-2);
    padding: 0;
    border: none;
  }
  .nav__cta { margin-top: 0; }
}

/* === Hero === */
.hero {
  padding-top: var(--s-16);
  padding-bottom: var(--s-16);
}
.hero__pill {
  display: inline-block;
  background: rgba(34, 226, 164, 0.15);
  color: var(--brand-primary-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-6);
  letter-spacing: 0.01em;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 18ch;
  margin-bottom: var(--s-6);
}
.hero__sub {
  font-size: var(--fs-md);
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: var(--s-8);
}
@media (min-width: 768px) {
  .hero__sub { font-size: var(--fs-lg); }
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  font-size: var(--fs-sm);
  color: var(--ink-2);
  margin-bottom: var(--s-8);
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
  margin-bottom: var(--s-8);
}
.hero__hint {
  font-size: var(--fs-xs);
  color: var(--muted);
}
.btn { min-height: 44px; }
.hero__seal {
  font-size: var(--fs-xs);
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: var(--s-3);
  max-width: 60ch;
}

/* === Hero grid + mockup === */
.hero__grid {
  display: grid;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-16); }
}
.hero__mockup { width: 100%; display: none; }
@media (min-width: 1024px) {
  .hero__mockup { display: block; }
}

/* === UI mockup compartilhado === */
.ui {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  font-size: var(--fs-xs);
  color: var(--ink-2);
}
.ui__bar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.ui__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.ui__dot:nth-child(1) { background: #ff5f57; }
.ui__dot:nth-child(2) { background: #ffbd2e; }
.ui__dot:nth-child(3) { background: #28c840; }
.ui__title {
  font-weight: 600;
  color: var(--ink);
  margin-left: var(--s-2);
}
.ui__body {
  padding: var(--s-6);
  display: grid;
  gap: var(--s-4);
}
.ui--compact .ui__body { padding: var(--s-4); gap: var(--s-3); }

.ui__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.ui__kpi {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ui__kpi-label { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.ui__kpi-value { color: var(--ink); font-weight: 700; font-size: var(--fs-md); }
.ui__kpi-delta { font-size: 10px; font-weight: 600; }
.ui__kpi-delta.up { color: var(--accent-dark); }
.ui__kpi-delta.down { color: var(--accent-dark); }

.ui__chart {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: var(--s-4);
}
.ui__chart-label { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--s-2); }
.ui__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}
.ui__bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.ui__list { display: grid; gap: var(--s-2); }
.ui__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2) var(--s-3);
  background: var(--surface-2);
  border-radius: var(--r-md);
}
.ui__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.ui__avatar--lg { width: 40px; height: 40px; font-size: 14px; }
.ui__item-text { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.ui__item-text strong { color: var(--ink); font-size: var(--fs-xs); }
.ui__item-text small { color: var(--muted); font-size: 10px; }

.ui__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.ui__tag--ok { background: rgba(34, 226, 164, 0.18); color: var(--accent-dark); }
.ui__tag--warn { background: rgba(255, 189, 46, 0.2); color: #b8770a; }

/* Rota mockup */
.route { display: grid; gap: var(--s-3); }
.route__group { background: var(--surface-2); border-radius: var(--r-md); padding: var(--s-3); }
.route__label { font-weight: 600; color: var(--ink); font-size: var(--fs-xs); margin-bottom: var(--s-2); }
.route__label small { color: var(--muted); font-weight: 400; }
.route__stops { display: grid; gap: 4px; }
.route__stop {
  font-size: 11px;
  color: var(--ink-2);
  padding-left: var(--s-3);
  position: relative;
}
.route__stop::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.route__total {
  font-weight: 600;
  color: var(--brand-primary);
  font-size: var(--fs-xs);
  text-align: right;
  padding-top: var(--s-2);
  border-top: 1px dashed var(--line);
}

/* Conciliação mockup */
.recon { display: grid; gap: 6px; }
.recon__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  background: var(--surface-2);
}
.recon__row strong { color: var(--ink); font-size: var(--fs-xs); display: block; }
.recon__row small { color: var(--muted); font-size: 10px; }
.recon__total {
  font-weight: 600; color: var(--brand-primary);
  font-size: var(--fs-xs); padding-top: var(--s-2);
  border-top: 1px dashed var(--line);
}

/* Perfil mockup */
.profile { display: grid; gap: var(--s-3); }
.profile__head { display: flex; align-items: center; gap: var(--s-3); }
.profile__head strong { display: block; color: var(--ink); font-size: var(--fs-sm); }
.profile__head small { display: block; color: var(--muted); font-size: 10px; }
.profile__head > div:nth-child(2) { flex: 1; }
.profile__plan { display: flex; gap: 6px; flex-wrap: wrap; }
.profile__pill {
  background: var(--surface-2);
  color: var(--ink-2);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 500;
}
.profile__timeline {
  border-left: 2px solid var(--line);
  padding-left: var(--s-3);
  display: grid;
  gap: var(--s-2);
}
.profile__event { display: flex; align-items: center; gap: var(--s-2); font-size: 11px; color: var(--ink-2); position: relative; }
.profile__dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-left: -19px;
  background: var(--accent);
}
.profile__dot.pause { background: #ffbd2e; }

/* === Preview section === */
.preview__grid {
  display: grid;
  gap: var(--s-8);
  margin-top: var(--s-12);
}
@media (min-width: 1024px) {
  .preview__grid { grid-template-columns: repeat(3, 1fr); }
}
.preview__card { display: flex; flex-direction: column; gap: var(--s-4); }
.preview__shot { transition: transform 200ms ease; }
.preview__card:hover .preview__shot { transform: translateY(-4px); }
.preview__card h3 { font-size: var(--fs-md); font-weight: 700; color: var(--ink); }
.preview__card p { color: var(--ink-2); font-size: var(--fs-sm); }

/* === Pain (Seção 2) === */
.pain__list {
  display: grid;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  counter-reset: pain;
}
.pain__list li {
  position: relative;
  padding-left: var(--s-12);
  color: var(--ink-2);
  counter-increment: pain;
}
.pain__list li::before {
  content: counter(pain);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--brand-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
}
.pain__close {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--s-6);
}

/* === Grids === */
.grid {
  display: grid;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Cards === */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
}
.card__sub {
  font-size: var(--fs-sm);
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: var(--s-3);
}
.card p { color: var(--ink-2); }
.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-sm);
  margin-bottom: var(--s-4);
}

/* === Bullets em listas de feature === */
.bullets {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.bullets li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--ink-2);
  font-size: var(--fs-sm);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--accent);
}
.bullets--good li::before { background: var(--accent); }
.bullets--bad li::before { background: var(--muted); }

/* === Why blocks === */
.why__block h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.why__block p { color: var(--ink-2); font-size: var(--fs-sm); }

/* === Fit (Seção 6) === */
.fit__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
}
.fit__col h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}

/* === Integrations chips === */
.chips {
  display: grid;
  gap: var(--s-3);
}
@media (min-width: 768px) {
  .chips { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .chips { grid-template-columns: repeat(3, 1fr); }
}
.chips li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-6);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.chips strong { color: var(--brand-primary); }

/* === FAQ === */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-6);
  margin-bottom: var(--s-3);
  transition: border-color 150ms;
}
.faq details[open] {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: var(--s-8);
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: var(--fs-lg);
  color: var(--brand-primary);
  font-weight: 400;
  transition: transform 150ms;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: var(--s-3);
  color: var(--ink-2);
}

/* === Social proof === */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
}
.quote p {
  font-size: var(--fs-md);
  color: var(--ink);
  margin-bottom: var(--s-4);
  font-style: italic;
}
.quote footer {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: normal;
}
.metrics {
  display: grid;
  gap: var(--s-6);
  margin-top: var(--s-12);
  text-align: center;
}
@media (min-width: 768px) {
  .metrics { grid-template-columns: repeat(3, 1fr); }
}
.metrics li { color: var(--ink-2); font-size: var(--fs-sm); }
.metrics span {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-1);
}

/* === Case Ovovo === */
.case__badge {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  margin-top: var(--s-8);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 1024px) {
  .case { padding: var(--s-12); }
}
.case__metrics {
  display: grid;
  gap: var(--s-6);
  margin-bottom: var(--s-12);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .case__metrics { grid-template-columns: repeat(3, 1fr); }
}
.case__metric p {
  color: var(--ink-2);
  font-size: var(--fs-sm);
}
.case__num {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s-2);
}
@media (min-width: 1024px) {
  .case__num { font-size: var(--fs-2xl); }
}
.case__quote {
  background: var(--surface-2);
  border: none;
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md);
  margin-bottom: var(--s-12);
}
.case__highlights {
  display: grid;
  gap: var(--s-8);
}
@media (min-width: 768px) {
  .case__highlights { grid-template-columns: repeat(2, 1fr); }
}
.case__highlights h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--s-3);
  color: var(--ink);
}

/* === Maker (Criasol) === */
.maker__grid {
  display: grid;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .maker__grid { grid-template-columns: 1.4fr 1fr; gap: var(--s-16); }
}
.maker__badge {
  display: inline-block;
  background: rgba(91, 23, 201, 0.1);
  color: var(--brand-primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.maker__copy p {
  color: var(--ink-2);
  margin-bottom: var(--s-4);
}
.maker__points {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.maker__points li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--ink-2);
  font-size: var(--fs-sm);
}
.maker__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.maker__logo {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.maker__tag {
  color: var(--muted);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.maker__quote {
  border-left: 3px solid var(--accent);
  padding-left: var(--s-4);
  font-style: italic;
  color: var(--ink);
  font-size: var(--fs-sm);
}

/* === CTA Final === */
.cta-final {
  background: var(--surface-dark);
  color: #fff;
  border-radius: 0;
}
.cta-final h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--s-4);
}
.cta-final > .container > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-md);
  max-width: 60ch;
  margin: 0 auto var(--s-8);
}
.cta-final__note {
  margin-top: var(--s-6) !important;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55) !important;
}

/* === Footer === */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: var(--s-8) 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  justify-content: space-between;
}
.site-footer p { color: var(--muted); font-size: var(--fs-xs); }
.site-footer .footer-logo { height: 36px; width: auto; }
.link { color: var(--brand-primary); font-size: var(--fs-sm); }

/* === WhatsApp Float === */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  color: #fff;
}
.wa-float svg { display: block; flex-shrink: 0; }
.wa-float__label { display: none; }
@media (min-width: 768px) {
  .wa-float { bottom: 28px; right: 28px; padding: 14px 20px; }
  .wa-float__label { display: inline; }
}
