/* ═══════════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  --bg: #161C34;
  --bg-soft: #1E2543;
  --bg-warm: #1A213D;
  --bg-dark: #0D1124;
  --bg-darker: #090C1A;
  --text: #ffffff;
  --text-soft: #d4d4d8;
  --text-muted: #a1a1aa;
  --text-faint: #71717a;
  --brand: #5d3fd3;
  --brand-soft: rgba(93, 63, 211, 0.15);
  --brand-softer: rgba(93, 63, 211, 0.08);
  --brand-dark: #4527a8;
  --brand-deep: #2d1875;
  --accent: #ea580c;
  --accent-soft: rgba(234, 88, 12, 0.1);
  --accent-dark: #c2410c;
  --gold: #b08d4f;
  --border: #2B3453;
  --border-soft: #232A46;
  --border-strong: #3A456C;
  --success: #15803d;
  --shadow-xs: 0 1px 2px rgba(15, 14, 23, .04);
  --shadow-sm: 0 2px 4px rgba(15, 14, 23, .04), 0 1px 2px rgba(15, 14, 23, .06);
  --shadow-md: 0 4px 8px -2px rgba(15, 14, 23, .06), 0 2px 4px -2px rgba(15, 14, 23, .04);
  --shadow-lg: 0 12px 24px -6px rgba(15, 14, 23, .08), 0 4px 8px -2px rgba(15, 14, 23, .04);
  --shadow-xl: 0 24px 48px -12px rgba(15, 14, 23, .18), 0 8px 16px -4px rgba(15, 14, 23, .06);
  --shadow-2xl: 0 40px 80px -20px rgba(15, 14, 23, .25);
  --shadow-brand: 0 12px 32px -8px rgba(93, 63, 211, .35), 0 4px 12px -4px rgba(93, 63, 211, .2);
  --shadow-accent: 0 12px 28px -8px rgba(234, 88, 12, .45), 0 4px 10px -3px rgba(234, 88, 12, .25);
  --shadow-inset: inset 0 0 0 1px rgba(15, 14, 23, .04);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

.theme-light {
  --bg: #ffffff;
  --bg-soft: #faf9fc;
  --bg-warm: #fdfaf6;
  --bg-dark: #f3f0fb;
  --bg-darker: #ebe6f8;
  --text: #0f0e17;
  --text-soft: #44434f;
  --text-muted: #75747f;
  --text-faint: #a8a7b0;
  --border: #e8e6ee;
  --border-soft: #f3f1f7;
  --border-strong: #d5d3dd;
  background-color: var(--bg);
  color: var(--text-soft);
}

.theme-light h2,
.theme-light h3,
.theme-light h4 {
  color: var(--text);
}


/* ═══════════════════════════════════════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════════════
   ANIMAÇÕES — CONVERSÃO-DRIVEN
   Princípios:
   1. Todas em transform/opacity (GPU-accelerated, sem reflow)
   2. Timing 300-400ms (sweet spot UX)
   3. prefers-reduced-motion respeitado (acessibilidade obrigatória)
   4. Sem libraries externas (zero JS pesado)
   ═══════════════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulseCta {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-accent);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -8px rgba(249, 115, 22, .55);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on scroll — itens começam invisíveis e animam quando entram */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: delays incrementais para sequência de elementos */
.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

.reveal.d4 {
  transition-delay: .32s;
}

.reveal.d5 {
  transition-delay: .40s;
}

.reveal.d6 {
  transition-delay: .48s;
}

/* Hero entrance — cascata imediata, sem esperar scroll */
.hero-content>* {
  opacity: 0;
  animation: fadeUp .6s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-content>*:nth-child(1) {
  animation-delay: .1s;
}

.hero-content>*:nth-child(2) {
  animation-delay: .2s;
}

.hero-content>*:nth-child(3) {
  animation-delay: .3s;
}

.hero-content>*:nth-child(4) {
  animation-delay: .4s;
}

.hero-content>*:nth-child(5) {
  animation-delay: .5s;
}

.hero-content>*:nth-child(6) {
  animation-delay: .6s;
}

.hero-visual {
  opacity: 0;
  animation: fadeRight .8s cubic-bezier(.16, 1, .3, 1) .3s forwards;
}

/* CTA primário no hero — pulse sutil contínuo após entrada */
.hero-ctas .btn-primary {
  animation: fadeUp .6s cubic-bezier(.16, 1, .3, 1) .4s forwards, pulseCta 2.8s ease-in-out 2s infinite;
  opacity: 0;
}

/* Progress bar no topo — feedback de scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-soft);
  z-index: 200;
  pointer-events: none;
}

.scroll-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  transition: width .1s linear;
}

/* Sticky mobile CTA: aparece com slide-up depois que hero some */
.sticky-mobile-cta {
  transform: translateY(100%);
  transition: transform .3s ease-out;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

/* Pricing number — transição quando valor muda */
.pricing-display .amount #price-total {
  display: inline-block;
  transition: transform .2s cubic-bezier(.16, 1, .3, 1), color .2s ease;
}

.pricing-display.bump .amount #price-total {
  transform: scale(1.12);
  color: var(--accent);
}

/* Hover micro-interactions já existem nos .step e .who-card via CSS, mantém */

/* Acessibilidade: usuários que preferem menos movimento desligam tudo */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-content>*,
  .hero-visual,
  .hero-ctas .btn-primary {
    opacity: 1;
    animation: none;
  }

  .sticky-mobile-cta {
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, #a3340a 100%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.btn-primary>* {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(234, 88, 12, .55);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--text);
  color: #fff;
}

.btn-secondary:hover {
  background: #1a1a26;
  transform: translateY(-1px);
}

.btn-light {
  background: #ffffff;
  color: #090C1A;
}

.btn-light:hover {
  background: #f3f0fb;
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
}

.btn-ghost:hover {
  color: var(--brand);
}

.btn-large {
  padding: 20px 36px;
  font-size: 17px;
}

.btn-arrow::after {
  content: '→';
  margin-left: 4px;
  transition: transform .2s var(--ease);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 28, 52, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--text);
}

.logo span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta .btn {
  padding: 11px 20px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .header-cta {
    gap: 6px;
  }
  .header-cta .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .logo img {
    max-height: 32px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -400px;
  right: -20%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(93, 63, 211, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -200px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(234, 88, 12, 0.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  margin-bottom: 20px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.025em;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--brand-softer) 0%, var(--accent-soft) 100%);
  z-index: -1;
  transform: skewX(-8deg);
  opacity: 0.7;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-ctas .meta {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-ctas .meta strong {
  color: var(--text);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

.hero-proof-item strong {
  color: var(--text);
  font-weight: 700;
}

.hero-proof-item .icon {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual-main {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: var(--text);
}

.hero-visual-layer {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--text);
  width: 75%;
}

.hero-visual-layer.layer-1 {
  top: -40px;
  right: 0;
  z-index: 1;
}

.hero-visual-layer.layer-2 {
  bottom: -40px;
  left: 0;
  z-index: 3;
}

.hero-visual-layer img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #1c1c24;
  border-bottom: 1px solid #2a2a35;
}

.hero-visual-bar .traffic-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-visual-bar .traffic-light.red {
  background: #ff5f57;
}

.hero-visual-bar .traffic-light.yellow {
  background: #febc2e;
}

.hero-visual-bar .traffic-light.green {
  background: #28c840;
}

.hero-visual-bar .url {
  margin-left: 12px;
  padding: 4px 12px;
  background: #2a2a35;
  border-radius: 6px;
  font-size: 12px;
  font-family: 'SF Mono', Menlo, monospace;
  color: #a1a1aa;
}

.hero-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
  }

  .hero {
    padding: 80px 0 120px;
  }

  .hero-visual-layer.layer-1 {
    top: -90px;
    right: -60px;
  }

  .hero-visual-layer.layer-2 {
    bottom: -90px;
    left: -60px;
  }
}

@media (max-width: 979px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px; /* Dá mais espaço nas laterais além do container */
  }
  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-proof {
    justify-content: center;
    text-align: left;
    margin-bottom: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   TRUST STRIP (logos)
   ═══════════════════════════════════════════════════════════════════════ */
.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
}

.trust-strip-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  opacity: .65;
  max-width: 900px;
  margin: 0 auto;
}

.trust-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 18px;
  filter: grayscale(1);
}

@media (min-width: 768px) {
  .trust-logos {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTIONS GENÉRICO
   ═══════════════════════════════════════════════════════════════════════ */
.section {
  padding: 64px 0;
}

@media (min-width: 980px) {
  .section {
    padding: 72px 0;
  }
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--bg-dark);
  color: #d4d4d8;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.screenshots {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
  color: #d4d4d8;
  position: relative;
  overflow: hidden;
}

.screenshots::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(93, 63, 211, .15) 0%, transparent 60%);
  pointer-events: none;
}

.screenshots .section-head,
.screenshots .sc-tabs,
.screenshots .sc-frame {
  position: relative;
  z-index: 1;
}

.screenshots .section-eyebrow {
  background: rgba(234, 88, 12, .1);
  border-color: rgba(234, 88, 12, .2);
  color: var(--accent);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
  border: 1px solid rgba(234, 88, 12, 0.2);
  animation: pulse 2s infinite;
}

.section-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.section-head p {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════════════
   STEPS — Como funciona
   ═══════════════════════════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.step {
  background: var(--bg);
  padding: 40px 32px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  transition: all .35s var(--ease);
  overflow: hidden;
}

.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top left, var(--brand-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--brand-softer);
  box-shadow: var(--shadow-xl);
}

.step:hover::after {
  opacity: 1;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 500;
  font-style: italic;
  line-height: .9;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: block;
  letter-spacing: -0.04em;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.step p {
  font-size: 15px;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   PARA QUEM É (cards)
   ═══════════════════════════════════════════════════════════════════════ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.who-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.who-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.who-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.who-card:hover::before {
  opacity: 1;
}

.who-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 24px;
  transition: transform .35s var(--ease);
}

.who-card:hover .who-icon {
  transform: scale(1.05) rotate(-3deg);
}

.who-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.who-card .who-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.who-card p {
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.who-card .modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.who-card .module-tag {
  padding: 5px 11px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all .2s ease;
}

.who-card:hover .module-tag {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

@media (min-width: 768px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   SCREENSHOTS CAROUSEL
   ═══════════════════════════════════════════════════════════════════════ */
.screenshots {
  background: var(--bg-dark);
  color: #d4d4d8;
}

.sc-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, .04);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .06);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sc-tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #a1a1aa;
  background: transparent;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sc-tab i {
  font-size: 16px;
}

.sc-tab.on {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(93, 63, 211, .5);
}

.sc-tab:hover:not(.on) {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

@media (max-width: 767px) {
  .sc-tabs {
    border-radius: 20px;
    padding: 8px;
    gap: 6px;
  }
  .sc-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.sc-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.sc-bar {
  background: #1c1c24;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sc-bar .url {
  margin-left: 14px;
  padding: 4px 12px;
  background: #2a2a35;
  border-radius: 6px;
  font-size: 12px;
  font-family: 'SF Mono', Menlo, monospace;
  color: #a1a1aa;
}

.sc-slides {
  position: relative;
  aspect-ratio: 1920 / 879;
  background: var(--bg);
}

.sc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
}

.sc-slide.active {
  opacity: 1;
  z-index: 2;
}

.sc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ═══════════════════════════════════════════════════════════════════════
   MÓDULOS (16 grid)
   ═══════════════════════════════════════════════════════════════════════ */
.modules-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.module-card {
  width: calc(50% - 6px);
  padding: 22px 14px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: all .25s var(--ease);
  position: relative;
}

.module-card:nth-child(6n+1) {
  --mod-color: 59, 130, 246;
}

/* Azul */
.module-card:nth-child(6n+2) {
  --mod-color: 139, 92, 246;
}

/* Roxo */
.module-card:nth-child(6n+3) {
  --mod-color: 236, 72, 153;
}

/* Rosa */
.module-card:nth-child(6n+4) {
  --mod-color: 249, 115, 22;
}

/* Laranja */
.module-card:nth-child(6n+5) {
  --mod-color: 16, 185, 129;
}

/* Verde */
.module-card:nth-child(6n+6) {
  --mod-color: 14, 165, 233;
}

/* Ciano */
.module-card:hover {
  border-color: var(--brand-softer);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--bg) 0%, var(--brand-soft) 200%);
}

.module-card .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 10px;
  color: rgb(var(--mod-color));
  background: rgba(var(--mod-color), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--mod-color), 0.25);
  transition: all .3s var(--ease);
}

.module-card:hover .icon {
  transform: scale(1.1) translateY(-3px);
  background: rgba(var(--mod-color), 0.22);
  box-shadow: 0 8px 24px rgba(var(--mod-color), 0.25), inset 0 0 0 1px rgba(var(--mod-color), 0.4);
}

.module-card .name {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.module-card .price {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.module-card.base {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-color: var(--border-soft);
}

.module-card.base .price {
  color: var(--brand);
  font-weight: 700;
}

@media (min-width: 640px) {
  .module-card {
    width: calc(25% - 9px);
  }
}

@media (min-width: 980px) {
  .modules-grid {
    gap: 14px;
  }

  .module-card {
    width: calc(12.5% - 12.25px);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING / SIMULATOR
   ═══════════════════════════════════════════════════════════════════════ */
.pricing-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  box-shadow: var(--shadow-2xl), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  border: 1px solid var(--border-soft);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.pricing-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.pricing-desc {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-display {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.pricing-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
  opacity: .3;
}

.pricing-display .label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-display .amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-deep);
  letter-spacing: -0.03em;
}

.pricing-display .amount .currency {
  font-size: 28px;
  vertical-align: top;
  margin-right: 4px;
  opacity: 0.7;
  font-weight: 600;
}

.pricing-display .per {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 12px;
  font-weight: 500;
}

.pricing-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .pricing-modules {
    grid-template-columns: 1fr;
  }
}

.pricing-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: all .2s var(--ease);
  font-size: 14px;
}

.pricing-module:hover {
  border-color: var(--brand-softer);
  background: var(--bg);
  transform: translateY(-1px);
}

.pricing-module input {
  display: none;
}

.pricing-module .name { font-weight: 600; color: var(--text); white-space: nowrap; flex-shrink: 0; }
.pricing-module .price { color: var(--text-muted); font-size: 11px; font-weight: 500; text-align: right; line-height: 1.3; }

.pricing-module.checked {
  background: var(--brand-soft);
  border-color: var(--brand);
  box-shadow: 0 4px 12px -4px rgba(93, 63, 211, .25);
}

.pricing-module.checked .name {
  color: var(--brand-dark);
}

.pricing-module.checked .price {
  color: var(--brand);
}

.pricing-module.locked {
  opacity: .6;
  cursor: not-allowed;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-micro {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-micro span {
  white-space: nowrap;
}

.cta-micro .sep {
  color: var(--border);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO TRANSPARENCY STRIP
   ═══════════════════════════════════════════════════════════════════════ */
.price-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 14px 18px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-softer);
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-size: 14px;
}

.price-strip .label {
  font-weight: 700;
  color: var(--brand-dark);
}

.price-strip .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.price-strip .pill {
  background: var(--bg);
  border: 1px solid var(--brand-softer);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.price-strip a {
  color: var(--brand);
  font-weight: 700;
  margin-left: auto;
  white-space: nowrap;
}

.price-strip a:hover {
  color: var(--brand-dark);
}

/* ═══════════════════════════════════════════════════════════════════════
   EXCLUSIVOS (O que só a Vexiona faz)
   ═══════════════════════════════════════════════════════════════════════ */
.exclusives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.exclusive-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all .2s ease;
}

.exclusive-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.exclusive-card .badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.exclusive-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.exclusive-card p {
  font-size: 15px;
  margin-bottom: 16px;
}

.exclusive-card .vs {
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-soft);
  border-left: 3px solid var(--border);
}

.exclusive-card .vs strong {
  color: var(--text);
}

@media (min-width: 768px) {
  .exclusives {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   COMPARATIVO NOMINAL
   ═══════════════════════════════════════════════════════════════════════ */
.compare-table {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-table-scroll {
  overflow-x: auto;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 16px 14px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.compare-table thead th {
  background: var(--bg-soft);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}

.compare-table thead th.us {
  background: var(--brand);
  color: #fff;
  position: relative;
}

.compare-table thead th.us::after {
  content: 'NÓS';
  position: absolute;
  top: 6px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .1em;
}

.compare-table td.criterion {
  font-weight: 700;
  color: var(--text);
  background: var(--bg-soft);
  width: 220px;
}

.compare-table td.us {
  background: var(--brand-soft);
  font-weight: 600;
  color: var(--brand-dark);
}

.compare-table td .check {
  color: var(--success);
  font-weight: 700;
}

.compare-table td .x {
  color: #dc2626;
  font-weight: 700;
}

.compare-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {

  .compare-table th,
  .compare-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   MANIFESTO — seção editorial premium
   ═══════════════════════════════════════════════════════════════════════ */
.manifesto-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 63, 211, .05) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, .04) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-section .section-head,
.manifesto-section .text-center {
  position: relative;
  z-index: 1;
}

.manifesto-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.01em;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-item {
  position: relative;
  padding: 44px 36px 36px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  transition: all .4s var(--ease);
  overflow: hidden;
}

.manifesto-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.manifesto-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
  border-color: transparent;
}

.manifesto-item:hover::before {
  opacity: 1;
}

.manifesto-number {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-faint);
  margin-bottom: 24px;
  letter-spacing: 0;
  display: block;
  transition: color .3s var(--ease);
}

.manifesto-item:hover .manifesto-number {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--text);
}

.manifesto-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.manifesto-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-softer);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: -0.005em;
}

.manifesto-tag i {
  font-size: 15px;
  color: var(--brand);
}

@media (min-width: 880px) {
  .manifesto-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .manifesto-item {
    padding: 48px 36px 36px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════════════════════ */
.testimonial-main {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.testimonial-main .quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.testimonial-main .quote::before {
  content: '"';
  font-size: 80px;
  color: var(--brand);
  display: block;
  line-height: .8;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}

.testimonial-author .info {
  text-align: left;
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}

.testimonial-author .role {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonials-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
}

.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: .15em;
}

.testimonial-card .text {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-card .author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonial-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-softer);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
}

.testimonial-card .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.testimonial-card .role {
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .testimonials-secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   COMPARATIVO
   ═══════════════════════════════════════════════════════════════════════ */
.compare {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  align-items: center;
}

.compare-row.highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.compare-row.highlight .compare-label {
  color: rgba(255, 255, 255, .7);
}

.compare-row.highlight .compare-value {
  color: #fff;
}

.compare-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.compare-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.compare-row .desc {
  font-size: 14px;
  line-height: 1.5;
}

.compare-row.highlight .desc {
  color: rgba(255, 255, 255, .85);
}

@media (min-width: 768px) {
  .compare-row {
    grid-template-columns: 160px 1fr 1.5fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq-q .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-softer);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.faq-item.open .faq-q .arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  background: var(--bg-dark);
  color: #d4d4d8;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(93, 63, 211, .08) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(234, 88, 12, .05) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  z-index: 0;
}

.final-cta>* {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, .7);
}

.final-cta .micro {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, .5);
  padding: 32px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════════════════════════════ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 99;
  display: none;
}

.sticky-mobile-cta .btn {
  width: 100%;
}

@media (max-width: 767px) {
  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════════ */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 32px;
}

.mt-2 {
  margin-top: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: none;
  outline: none;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 84px; /* Fica acima do menu sticky mobile */
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 30px;
  }
}