:root {
  --bg: #06070a;
  --bg-elevated: #10131a;
  --bg-card: #12151d;
  --border: #232935;
  --border-soft: #1a1e26;
  --text: #f5f7fa;
  --text-dim: #93a0b0;
  --text-dimmer: #5c6675;

  /* Marca Nesva — extraida direto do logo oficial */
  --navy: #004593;
  --mid: #0078ab;
  --cyan: #00cad1;
  --grad: linear-gradient(135deg, var(--cyan), var(--mid) 55%, var(--navy));
  --grad-soft: linear-gradient(135deg, rgba(0, 202, 209, 0.14), rgba(0, 69, 147, 0.14));

  --success: #3fbf82;
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.wrap--narrow { max-width: 760px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 202, 209, 0.8);
}

.eyebrow--center { justify-content: center; width: 100%; }

/* --- Botoes --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: #04101c;
  box-shadow: 0 10px 30px rgba(0, 122, 172, 0.35);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0, 138, 172, 0.5); }
.btn--primary:active { transform: scale(0.97); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover { border-color: var(--cyan); background: rgba(0, 202, 209, 0.06); }

.btn--lg { padding: 15px 28px; font-size: 15px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--block { width: 100%; padding: 15px 0; font-size: 15px; }

/* ================= NAV ================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 7, 10, 0.6);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  margin-right: auto;
}

.nav__brand em { font-style: normal; color: var(--cyan); }

.nav__mark { width: 22px; height: 22px; object-fit: contain; }

.nav__links {
  display: flex;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
}

.nav__links a { transition: color 0.15s var(--ease); }
.nav__links a:hover { color: var(--text); }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

/* ================= HERO ================= */

.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(0, 202, 209, 0.16), rgba(0, 69, 147, 0.1) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  text-align: center;
  max-width: 780px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__trust { font-size: 12.5px; color: var(--text-dimmer); }

/* --- Mockup do produto no hero --- */

.hero__visual {
  position: relative;
  max-width: 620px;
  margin: 64px auto 0;
}

.browser-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #0b0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 202, 209, 0.08);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #14171e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot { width: 10px; height: 10px; border-radius: 999px; }
.dot--r { background: #ff5f57; }
.dot--y { background: #febc2e; }
.dot--g { background: #28c840; }

.browser-frame__title {
  margin: 0 auto;
  transform: translateX(-16px);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dimmer);
}

.mockup { padding: 18px 18px 14px; }

.mockup__header { padding-bottom: 10px; border-bottom: 1px solid var(--border-soft); margin-bottom: 12px; }

.mockup__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}

.mockup__mark {
  width: 9px; height: 9px; border-radius: 3px;
  background: var(--grad);
  box-shadow: 0 0 8px rgba(0, 202, 209, 0.6);
}

.mockup__header p { font-size: 10.5px; color: var(--text-dimmer); }

.mockup__tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 12px;
}

.mockup__tab {
  flex: 1;
  text-align: center;
  padding: 7px 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dimmer);
}

.mockup__tab--active { color: var(--text); border-bottom: 2px solid var(--cyan); }

.mockup__search {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 10.5px;
  color: var(--text-dimmer);
  margin-bottom: 10px;
}

.mockup__chips { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }

.chip {
  font-size: 9.5px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.chip--active { background: var(--mid); border-color: var(--mid); color: #fff; }

.mockup__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 244px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.mockup__rows::-webkit-scrollbar { width: 6px; }
.mockup__rows::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 7px;
  padding: 7px 9px;
}

.row--hi { border-color: var(--success); }

.row__play {
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}

.row__play--playing { background: var(--mid); border-color: var(--mid); color: #fff; }

.row__name { flex: 1; font-size: 11px; font-weight: 500; }

.row__btn {
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  background: var(--mid);
  color: #fff;
}

.row__btn--ok { background: transparent; padding: 0; font-size: 12px; }

.hero__floaters { position: absolute; inset: 0; pointer-events: none; z-index: -1; }

.floater {
  position: absolute;
  font-size: 26px;
  opacity: 0.5;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

.floater--1 { top: 6%; left: -6%; animation-delay: 0s; }
.floater--2 { top: 65%; right: -4%; animation-delay: 1.2s; }
.floater--3 { bottom: -4%; left: 12%; animation-delay: 2.4s; }
.floater--4 { top: 30%; right: -8%; font-weight: 800; animation-delay: 3.2s; color: var(--cyan); opacity: 0.35; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

.hero__demo-hint {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-dimmer);
  margin-top: 14px;
  animation: hint-pulse 2.4s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.mockup__tab { cursor: pointer; transition: color 0.15s var(--ease); }
.mockup__tab:hover { color: var(--text); }

.chip { cursor: pointer; transition: all 0.15s var(--ease); }
.chip:hover { border-color: var(--cyan); }
.chip:active { transform: scale(0.95); }

.row__btn { cursor: pointer; transition: transform 0.15s var(--ease), background 0.15s var(--ease); }
.row__btn:hover { transform: translateY(-1px); }
.row__btn:active { transform: scale(0.94); }

.row--busy .row__btn { opacity: 0.6; pointer-events: none; }

/* --- Toast (mesma linguagem do proprio plugin) --- */

.toast-host {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.toast--visible { opacity: 1; transform: translateY(0) scale(1); }
.toast__icon { color: var(--cyan); }

/* ================= NUMEROS REAIS ================= */

.stats {
  padding: 56px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(0, 202, 209, 0.03), transparent);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats__value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.8px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

@media (max-width: 860px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__value { font-size: 28px; }
}

/* ================= SECOES GERAIS ================= */

.section { padding: 108px 0; position: relative; }
.section--alt { background: var(--bg-elevated); }

.section__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 14px;
}

.section__sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ================= PROBLEMA ================= */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.problem-card:hover { transform: translateY(-4px); border-color: var(--border); }

.problem-card__icon { font-size: 26px; display: block; margin-bottom: 14px; }
.problem-card h3 { font-size: 16px; margin-bottom: 8px; }
.problem-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }

/* ================= FUNCIONALIDADES ================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 30px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 202, 209, 0.35);
  box-shadow: 0 16px 40px rgba(0, 100, 140, 0.18);
}

.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--grad-soft);
  border: 1px solid rgba(0, 202, 209, 0.25);
  position: relative;
}

.feature-card__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px; height: 20px;
  background: var(--grad);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.feature-card__icon--sfx::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Crect x='3' y='9' width='2.4' height='6'/%3E%3Crect x='8.2' y='5' width='2.4' height='14'/%3E%3Crect x='13.4' y='2' width='2.4' height='20'/%3E%3Crect x='18.6' y='7' width='2.4' height='10'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Crect x='3' y='9' width='2.4' height='6'/%3E%3Crect x='8.2' y='5' width='2.4' height='14'/%3E%3Crect x='13.4' y='2' width='2.4' height='20'/%3E%3Crect x='18.6' y='7' width='2.4' height='10'/%3E%3C/svg%3E"); }

.feature-card__icon--music::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E"); }

.feature-card__icon--overlay::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'/%3E%3Cpolyline points='2 17 12 22 22 17'/%3E%3Cpolyline points='2 12 12 17 22 12'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'/%3E%3Cpolyline points='2 17 12 22 22 17'/%3E%3Cpolyline points='2 12 12 17 22 12'/%3E%3C/svg%3E"); }

.feature-card__icon--text::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 7 4 4 20 4 20 7'/%3E%3Cline x1='9' y1='20' x2='15' y2='20'/%3E%3Cline x1='12' y1='4' x2='12' y2='20'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 7 4 4 20 4 20 7'/%3E%3Cline x1='9' y1='20' x2='15' y2='20'/%3E%3Cline x1='12' y1='4' x2='12' y2='20'/%3E%3C/svg%3E"); }

.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* ================= COMPARACAO ================= */

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.compare__col {
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border-soft);
}

.compare__col--before { background: var(--bg-card); opacity: 0.75; }
.compare__col--after { background: linear-gradient(160deg, rgba(0, 202, 209, 0.08), rgba(0, 69, 147, 0.06)); border-color: rgba(0, 202, 209, 0.3); }

.compare__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  margin-bottom: 16px;
}

.compare__tag--good { background: var(--grad); color: #04101c; }

.compare__col li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
}

.compare__col--after li { color: var(--text); }
.compare__col li:last-child { border-bottom: none; }

.compare__arrow {
  font-size: 26px;
  color: var(--cyan);
  font-weight: 800;
}

/* ================= PRECOS ================= */

.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 40px;
}

.plan-toggle__btn {
  padding: 9px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.plan-toggle__btn--active { background: var(--grad); color: #04101c; }

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 40px;
  text-align: center;
  overflow: hidden;
}

.price-card__glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 202, 209, 0.18), transparent 70%);
  pointer-events: none;
}

.price-card__label { font-size: 13px; color: var(--text-dim); font-weight: 700; margin-bottom: 14px; position: relative; }

.price-card__value {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  position: relative;
}

.price-card__currency { font-size: 24px; vertical-align: top; position: relative; top: 10px; margin-right: 2px; }
.price-card__period { font-size: 18px; color: var(--text-dim); font-weight: 600; }

.price-card__note { font-size: 12.5px; color: var(--text-dimmer); margin: 10px 0 30px; position: relative; }

.price-card__features {
  text-align: left;
  max-width: 320px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.price-card__features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card__features li::before {
  content: '✓';
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--grad-soft);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.price-card__guarantee {
  position: relative;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ================= FAQ ================= */

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 700;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-item__q span { color: var(--cyan); font-size: 18px; transition: transform 0.25s var(--ease); }
.faq-item.is-open .faq-item__q span { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-item__a p { padding: 0 20px 18px; font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }

/* ================= CTA FINAL ================= */

.cta-final {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0, 69, 147, 0.12));
  position: relative;
}

.cta-final h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-final p { color: var(--text-dim); margin-bottom: 30px; font-size: 15px; }

/* ================= FOOTER ================= */

.footer { border-top: 1px solid var(--border-soft); padding: 50px 0 0; }

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
}

.footer__brand { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-weight: 800; font-size: 15px; }
.footer__brand em { font-style: normal; color: var(--cyan); }
.footer__mark { width: 20px; height: 20px; object-fit: contain; }
.footer__brand p { width: 100%; font-weight: 400; font-size: 12.5px; color: var(--text-dimmer); margin-top: 4px; }

.footer__links { display: flex; gap: 22px; font-size: 13px; color: var(--text-dim); flex-wrap: wrap; }
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border-soft);
  padding: 18px 24px;
  font-size: 11.5px;
  color: var(--text-dimmer);
  text-align: center;
}

/* ================= REVEAL ANIMATION ================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero__sub { font-size: 15.5px; }
  .problem-grid, .feature-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare__arrow { transform: rotate(90deg); margin: 0 auto; }
  .section__title { font-size: 27px; }
  .section { padding: 76px 0; }
  .price-card { padding: 34px 24px; }
  .price-card__value { font-size: 44px; }
}

@media (max-width: 480px) {
  .hero { padding: 140px 0 70px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
}

/* ================= PAGINAS LEGAIS (Termos / Privacidade) ================= */

.legal {
  padding: 150px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}

.legal__updated {
  color: var(--text-dimmer);
  font-size: 12.5px;
  margin-bottom: 40px;
}

.legal h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.legal h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--cyan);
}

.legal p, .legal li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
}

.legal p { margin-bottom: 14px; }

.legal ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.legal li { margin-bottom: 6px; }

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

.legal a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.legal__back:hover { color: var(--text); }
