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

:root {
  --c-bg:        #0a0a0a;
  --c-bg-soft:   #141414;
  --c-bg-card:   #1a1a1a;
  --c-ink:       #f5f0e8;
  --c-ink-soft:  #a8a39c;
  --c-ink-mute:  #6c6862;
  --c-accent:    #c8f53f;
  --c-accent-2:  #ff6b1c;
  --c-accent-3:  #ffd84d;
  --c-line:      rgba(245,240,232,0.08);
  --c-line-2:    rgba(245,240,232,0.15);

  --f-display: 'Syne', sans-serif;
  --f-body:    'Space Grotesk', sans-serif;
  --f-mono:    'VT323', monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-hard: 6px 6px 0 var(--c-ink);
  --shadow-hard-sm: 4px 4px 0 var(--c-ink);
  --shadow-soft: 0 30px 80px rgba(0,0,0,.5);
  --t: .22s cubic-bezier(.4,.8,.4,1.2);
}

body[data-theme="light"] {
  --c-bg:        #f5f0e8;
  --c-bg-soft:   #ebe5da;
  --c-bg-card:   #ffffff;
  --c-ink:       #0a0a0a;
  --c-ink-soft:  #4a4640;
  --c-ink-mute:  #8c887f;
  --c-line:      rgba(10,10,10,0.10);
  --c-line-2:    rgba(10,10,10,0.20);
  --shadow-hard: 6px 6px 0 var(--c-ink);
  --shadow-soft: 0 30px 80px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(255,255,255,0.012) 2px 3px
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

body.turbo::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,240,232,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.spark {
  display: inline-block;
  color: var(--c-accent);
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 0%, 60%, 100% { opacity: 1; } 30% { opacity: 0; } }
@keyframes pulse-soft { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.85); } }
@keyframes float-y { 0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); } 50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); } }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: color-mix(in srgb, var(--c-bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--c-line);
}

.logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
}
.logo b {
  background: var(--c-accent);
  color: var(--c-bg);
  padding: 0.1em 0.35em 0.05em;
  border-radius: 6px;
  transform: skewX(-6deg);
  display: inline-block;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  font-family: var(--f-mono);
  font-size: 1.1rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--c-ink-soft);
  transition: color var(--t);
  position: relative;
}
.nav-links a::before { content: '['; opacity: 0; margin-right: 4px; transition: opacity var(--t); }
.nav-links a::after  { content: ']'; opacity: 0; margin-left: 4px;  transition: opacity var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--c-accent); }
.nav-links a:hover::before, .nav-links a:hover::after,
.nav-links a.active::before, .nav-links a.active::after { opacity: 1; }

.nav-cta {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--c-accent);
  color: var(--c-bg);
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 2px solid var(--c-ink);
  box-shadow: var(--shadow-hard-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--c-ink);
}

@media (min-width: 769px) {
  .nav { padding: 1rem 2rem; }
  .nav-links { display: flex; }
  .nav-cta { font-size: .85rem; padding: .7rem 1.2rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 6rem 1rem 3rem;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--c-accent) 18%, transparent) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 80%);
}

.hero-bg-blob {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--c-accent) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.18;
  top: 10%; left: 10%;
  pointer-events: none;
  animation: float-y 10s ease-in-out infinite;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-bg-card);
  border: 1px solid var(--c-line-2);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: blink 1.6s infinite;
  box-shadow: 0 0 12px var(--c-accent);
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  text-wrap: balance;
  width: 100% !important;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--c-bg);
  background: var(--c-accent);
  padding: 0 0.2em;
  transform: rotate(-1.5deg);
  border-radius: 4px;
  box-shadow: var(--shadow-hard-sm);
  border: 2px solid var(--c-ink);
}
.hero h1 u {
  text-decoration: none;
  background: linear-gradient(to bottom, transparent 0%, transparent 65%, var(--c-accent-2) 65%, var(--c-accent-2) 92%, transparent 92%);
  padding: 0 0.05em;
}
.hero h1 .strike {
  position: relative;
  color: var(--c-ink-mute);
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--c-accent-2);
}

.hero-sub {
  font-size: 1rem;
  color: var(--c-ink-soft);
  max-width: 100%;
  margin-bottom: 1.8rem;
  text-wrap: pretty;
}
.hero-sub b {
  color: var(--c-ink);
  font-weight: 600;
  background: linear-gradient(to bottom, transparent 70%, color-mix(in srgb, var(--c-accent) 30%, transparent) 70%);
  padding: 0 .1em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
}
.hero-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* === BUTTONS === */
.btn {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid var(--c-ink);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--c-accent);
  color: var(--c-bg);
  box-shadow: var(--shadow-hard);
}
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--c-ink); }
.btn--primary:active { transform: translate(3px,3px); box-shadow: 0 0 0 var(--c-ink); }
.btn--secondary {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line-2);
  box-shadow: none;
}
.btn--secondary:hover { border-color: var(--c-ink); background: var(--c-bg-card); }
.btn--wa { background: #25D366; color: #0a0a0a; box-shadow: var(--shadow-hard); }
.btn--wa:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--c-ink); }
.btn .arrow { font-family: var(--f-mono); font-size: 1.4rem; line-height: 1; }

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .hero-actions .btn {
    width: auto;
    justify-content: flex-start;
  }
}

.hero-stats {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--c-line-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--c-ink);
}
.stat .num em { font-style: normal; color: var(--c-accent); }
.stat .num sup { font-family: var(--f-mono); font-size: .85rem; color: var(--c-ink-mute); vertical-align: top; font-weight: 400; }
.stat .label { font-family: var(--f-mono); font-size: .9rem; text-transform: uppercase; color: var(--c-ink-mute); margin-top: .3rem; letter-spacing: .04em; }

/* === HERO visual collage === */
.hero-visual {
  position: relative;
  z-index: 2;
  height: 280px;
  width: 100%;
}

.sticker {
  position: absolute;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 2px solid var(--c-ink);
  box-shadow: var(--shadow-hard-sm);
  white-space: nowrap;
  z-index: 4;
  animation: float-y 4s ease-in-out infinite;
}
.sticker--lime  { background: var(--c-accent);   color: var(--c-bg); }
.sticker--orange{ background: var(--c-accent-2); color: var(--c-ink); }
.sticker--cream { background: var(--c-ink);      color: var(--c-bg); }
.sticker--yellow{ background: var(--c-accent-3); color: var(--c-bg); }

.win {
  position: absolute;
  background: var(--c-bg-card);
  border: 2px solid var(--c-ink);
  border-radius: 12px;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  z-index: 2;
  transition: transform .4s cubic-bezier(.3,.8,.4,1);
}
.win:hover { transform: rotate(0deg) translateY(-4px) scale(1.02) !important; z-index: 5; }
.win .bar {
  background: var(--c-bg-soft);
  border-bottom: 2px solid var(--c-ink);
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.win .bar .d { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--c-ink); }
.win .bar .d:nth-child(1) { background: #ff5f57; }
.win .bar .d:nth-child(2) { background: #ffbd2e; }
.win .bar .d:nth-child(3) { background: #28c840; }
.win .bar .url {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--c-ink-mute);
  padding: 0.15rem 0.5rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.win .body { padding: .8rem; }

.win-img { display: block; width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; object-position: center; }

.win-1 { top: 6%; left: 4%; width: 72%; transform: rotate(-3deg); }
.win-2 { bottom: 2%; right: 0%; width: 52%; transform: rotate(4deg); z-index: 3; }

.sticker-a { top: -8px; right: 6%;  --rot: -8deg;  animation-delay: -0.6s; }
.sticker-b { bottom: 10%; left: -2%; --rot: 6deg;  animation-delay: -1.2s; }
.sticker-c { top: 36%; right: -4%; --rot: -10deg; animation-delay: -1.8s; font-size: .7rem; }

.tape { position: absolute; width: 70px; height: 20px; background: rgba(245,240,232,0.4); border: 1px dashed rgba(0,0,0,.15); z-index: 6; }
.tape-1 { top: 4%; left: 32%; transform: rotate(-12deg); }
.tape-2 { bottom: 8%; left: 14%; transform: rotate(8deg); }

.spark-bg { position: absolute; font-size: 1.2rem; color: var(--c-accent); z-index: 1; animation: spin 8s linear infinite, blink 2.4s ease-in-out infinite; }
.spark-bg.s1 { top: 10%; right: 4%; }
.spark-bg.s2 { bottom: 8%; right: 38%; animation-delay: -1s; }
.spark-bg.s3 { top: 50%; left: -1%; color: var(--c-accent-2); animation-delay: -2s; }

@media (min-width: 641px) {
  .hero-visual { height: 340px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .stat .num { font-size: 2rem; }
}

@media (min-width: 1025px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 8rem 2rem 4rem;
    gap: 3rem;
  }
  .hero-visual { height: 520px; }
  .hero-bg-blob { width: 540px; height: 540px; left: 30%; }
  .hero h1 { font-size: clamp(2.8rem, 6.4vw, 6rem); }
  .hero-sub { font-size: 1.15rem; }
  .win-1 { width: 78%; }
  .win-2 { width: 55%; }
  .sticker { font-size: .85rem; }
  .sticker-c { font-size: .85rem; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  background: var(--c-accent);
  color: var(--c-bg);
  border-top: 2px solid var(--c-ink);
  border-bottom: 2px solid var(--c-ink);
  overflow: hidden;
  padding: 0.7rem 0;
  z-index: 2;
}
.marquee--alt { background: var(--c-bg); color: var(--c-ink); border-color: var(--c-line); }
.marquee--alt .m-track { animation-direction: reverse; }
.m-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.m-track span { display: inline-flex; align-items: center; gap: 1.2rem; }
.m-track .m-star { font-size: 1rem; opacity: .9; }
body.turbo .m-track { animation-duration: 14s; }

/* ============================================================
   PROOF
   ============================================================ */
.proof {
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
  align-items: center;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg-soft);
  text-align: center;
}
.proof .divider { display: none; }
.proof-cell .big {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--c-accent);
  letter-spacing: -.02em;
  line-height: 1;
}
.proof-cell .lab { font-family: var(--f-mono); text-transform: uppercase; font-size: .9rem; color: var(--c-ink-soft); margin-top: .2rem; }
.stars { color: var(--c-accent-3); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: .15rem; }

@media (min-width: 600px) {
  .proof {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    padding: 2.8rem 2rem;
    gap: 2rem;
  }
  .proof .divider { display: block; width: 1px; height: 56px; background: var(--c-line-2); }
  .proof-cell .big { font-size: 2rem; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section.sec {
  padding: 4rem 1rem;
  position: relative;
  z-index: 2;
}
.sec--alt {
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.sec-head { max-width: 760px; margin-bottom: 2.5rem; }
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-mono);
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .8rem;
}
.sec-label .bar { width: 24px; height: 2px; background: var(--c-accent); }
.sec-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
  text-wrap: balance;
}
.sec-title em { font-style: normal; color: var(--c-accent); }
.sec-sub { font-size: 1rem; color: var(--c-ink-soft); max-width: 580px; text-wrap: pretty; }

@media (min-width: 769px) {
  section.sec { padding: 6rem 2rem; }
  .sec-head { margin-bottom: 3rem; }
}

/* ============================================================
   NICHOS
   ============================================================ */
.niches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.niche {
  background: var(--c-bg-card);
  border: 2px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.2rem;
  position: relative;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.niche:hover { transform: translate(-3px,-3px); border-color: var(--c-ink); box-shadow: 6px 6px 0 var(--c-accent); }
.niche .icon { width: 44px; height: 44px; display: grid; place-items: center; font-size: 1.5rem; background: var(--c-bg-soft); border: 2px solid var(--c-ink); border-radius: 10px; margin-bottom: .8rem; box-shadow: var(--shadow-hard-sm); transform: rotate(-3deg); }
.niche h3 { font-family: var(--f-display); font-weight: 700; font-size: 1rem; margin-bottom: .3rem; letter-spacing: -.01em; }
.niche p { color: var(--c-ink-soft); font-size: .88rem; line-height: 1.5; }
.niche .corner { position: absolute; top: 12px; right: 12px; font-family: var(--f-mono); font-size: .85rem; color: var(--c-ink-mute); }

@media (min-width: 769px) {
  .niches { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .niche { padding: 1.6rem; }
  .niche .icon { width: 52px; height: 52px; font-size: 1.8rem; }
  .niche h3 { font-size: 1.1rem; }
}

/* ============================================================
   PROCESSO
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.process::before { display: none; }
.step { position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px;
  background: var(--c-bg);
  border: 2px solid var(--c-ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-accent);
  box-shadow: var(--shadow-hard-sm);
  margin-bottom: 1rem;
  transition: transform var(--t);
}
body[data-theme="light"] .step-num { background: var(--c-bg-card); }
.step:hover .step-num { transform: rotate(-8deg) scale(1.05); }
.step h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; margin-bottom: .3rem; letter-spacing: -.01em; }
.step p { color: var(--c-ink-soft); font-size: .88rem; line-height: 1.5; }
.step .pill { display: inline-block; margin-top: .6rem; font-family: var(--f-mono); font-size: .82rem; background: var(--c-bg-soft); color: var(--c-ink-soft); padding: .12rem .5rem; border-radius: 999px; border: 1px solid var(--c-line-2); }

@media (min-width: 901px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
  .process::before {
    content: '';
    display: block;
    position: absolute;
    top: 26px;
    left: 6%; right: 6%;
    border-top: 2px dashed var(--c-line-2);
    z-index: 0;
  }
  .step-num { width: 64px; height: 64px; font-size: 1.2rem; }
}

/* ============================================================
   COMPARATIVO
   ============================================================ */
.compare {
  background: var(--c-bg-card);
  border: 2px solid var(--c-ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  min-width: 500px;
}
.compare-row { display: contents; }
.compare-row > * {
  padding: .9rem .8rem;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
}
.compare-row:last-child > * { border-bottom: 0; }
.compare-head { background: var(--c-bg-soft); }
.compare-head > * {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  border-bottom: 2px solid var(--c-ink) !important;
}
.compare-head .us { background: var(--c-accent); color: var(--c-bg); position: relative; }
.compare-head .us::after { content: '★'; position: absolute; top: -10px; right: 10px; font-size: 1.1rem; color: var(--c-accent-3); -webkit-text-stroke: 1.5px var(--c-ink); }
.compare-row .label { font-family: var(--f-mono); font-size: .9rem; color: var(--c-ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.compare-row .cell { font-family: var(--f-display); font-weight: 700; font-size: .9rem; letter-spacing: -.01em; }
.compare-row .cell.bad { color: var(--c-ink-mute); }
.compare-row .cell.us { background: color-mix(in srgb, var(--c-accent) 16%, transparent); color: var(--c-ink); }
.compare-row .check { color: var(--c-accent); margin-right: .35rem; font-weight: 900; }
.compare-row .x { color: var(--c-accent-2); margin-right: .35rem; font-weight: 900; }

/* ============================================================
   PLANOS
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 440px;
  margin: 0 auto;
}
.plan {
  background: var(--c-bg-card);
  border: 2px solid var(--c-ink);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 4px 4px 0 var(--c-line-2);
}
.plan:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--c-ink); }
.plan--featured {
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-ink);
  box-shadow: var(--shadow-hard);
}
.plan--featured:hover { transform: translate(-3px,-3px); }
.plan .tag-feat {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--c-accent-2);
  color: var(--c-ink);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .75rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  border: 2px solid var(--c-ink);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: var(--shadow-hard-sm);
}
.plan h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em; margin-bottom: .25rem; }
.plan .tag-line { font-family: var(--f-mono); text-transform: uppercase; font-size: .85rem; margin-bottom: 1rem; color: var(--c-ink-mute); }
.plan--featured .tag-line { color: color-mix(in srgb, var(--c-bg) 60%, transparent); }
.plan .price-row {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  border-top: 2px dashed var(--c-line-2);
  border-bottom: 2px dashed var(--c-line-2);
  padding: .8rem 0;
  margin-bottom: 1rem;
}
.plan--featured .price-row { border-color: rgba(10,10,10,.3); }
.plan .price-cur { font-family: var(--f-mono); font-size: 1rem; }
.plan .price-big { font-family: var(--f-display); font-weight: 800; font-size: 2.2rem; line-height: 1; letter-spacing: -.04em; }
.plan .price-meta { font-family: var(--f-mono); font-size: .85rem; color: var(--c-ink-mute); margin-left: .3rem; }
.plan--featured .price-meta { color: rgba(10,10,10,.6); }
.plan .month-line { font-size: .9rem; color: var(--c-ink-soft); margin-bottom: 1.2rem; }
.plan .month-line b { font-family: var(--f-display); font-weight: 800; font-size: 1rem; color: var(--c-ink); }
.plan--featured .month-line { color: rgba(10,10,10,.7); }
.plan--featured .month-line b { color: var(--c-bg); }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; flex: 1; }
.plan li { font-size: .9rem; display: flex; align-items: flex-start; gap: .5rem; }
.plan li::before { content: '✓'; font-weight: 900; color: var(--c-accent); flex-shrink: 0; line-height: 1.4; }
.plan--featured li::before { color: var(--c-bg); }
.plan li.dim { color: var(--c-ink-mute); }
.plan li.dim::before { content: '–'; color: var(--c-ink-mute); }
.plan .plan-btn {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  padding: .9rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--c-ink);
  display: block;
  transition: transform var(--t), box-shadow var(--t);
  background: var(--c-bg);
  color: var(--c-ink);
  box-shadow: var(--shadow-hard-sm);
}
.plan--featured .plan-btn { background: var(--c-bg); color: var(--c-ink); }
.plan .plan-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--c-ink); }
.plan .vagas { font-family: var(--f-mono); font-size: .82rem; text-align: center; margin-top: .7rem; color: var(--c-ink-mute); }
.plan--featured .vagas { color: rgba(10,10,10,.65); }
.plan .vagas .live { display: inline-block; width: 7px; height: 7px; background: var(--c-accent-2); border-radius: 50%; margin-right: .4rem; vertical-align: middle; animation: blink 1.4s infinite; }
.plan--featured .vagas .live { background: var(--c-bg); }

@media (min-width: 981px) {
  .plans { grid-template-columns: repeat(3, 1fr); max-width: none; margin: 0; gap: 1.5rem; }
  .plan { padding: 2rem; }
  .plan--featured { transform: translateY(-12px); }
  .plan--featured:hover { transform: translate(-3px,-15px); }
  .plan .price-big { font-size: 2.6rem; }
}

.guarantee {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--f-mono);
  font-size: .92rem;
  color: var(--c-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  flex-wrap: wrap;
}
.guarantee b { background: var(--c-bg-card); border: 1px dashed var(--c-line-2); padding: .3rem .7rem; border-radius: 6px; color: var(--c-ink); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.testi {
  background: var(--c-bg-card);
  border: 2px solid var(--c-ink);
  border-radius: var(--radius);
  padding: 1.2rem;
  position: relative;
  box-shadow: 4px 4px 0 var(--c-line-2);
}
.testi:nth-child(2) { transform: none; }
.testi:nth-child(3) { transform: none; }
.testi .stars { font-size: 1rem; margin-bottom: .7rem; }
.testi blockquote { font-family: var(--f-display); font-weight: 600; font-size: 1rem; line-height: 1.35; letter-spacing: -.01em; margin-bottom: 1rem; text-wrap: pretty; }
.testi-by { display: flex; align-items: center; gap: .6rem; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--c-ink); background: var(--c-accent); color: var(--c-bg); display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; font-size: .85rem; }
.testi-info .name { font-family: var(--f-display); font-weight: 700; font-size: .9rem; }
.testi-info .job { font-family: var(--f-mono); font-size: .82rem; color: var(--c-ink-mute); }

@media (min-width: 769px) {
  .testis { grid-template-columns: repeat(3, 1fr); }
  .testi:nth-child(2) { transform: rotate(1deg); }
  .testi:nth-child(3) { transform: rotate(-1deg); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.faq-side { position: static; }
.faq-side .big {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--c-accent);
}
.faq-side .ask { margin-top: 1rem; font-size: .92rem; color: var(--c-ink-soft); }
.faq-side .ask a { color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; text-decoration-color: var(--c-accent); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--c-line); transition: padding var(--t); }
.faq-item:last-child { border-bottom: 1px solid var(--c-line); }
.faq-q { width: 100%; text-align: left; padding: 1.2rem 0; font-family: var(--f-display); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color var(--t); }
.faq-q:hover { color: var(--c-accent); }
.faq-arrow { font-family: var(--f-mono); font-size: 1.4rem; color: var(--c-accent); flex-shrink: 0; transition: transform .3s ease; line-height: 1; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; color: var(--c-ink-soft); font-size: .95rem; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 1.2rem; }

@media (min-width: 901px) {
  .faq-wrap { grid-template-columns: 320px 1fr; gap: 3rem; }
  .faq-side { position: sticky; top: 7rem; }
  .faq-side .big { font-size: 4rem; }
  .faq-q { font-size: 1.1rem; padding: 1.4rem 0; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  margin: 2rem 1rem;
  position: relative;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--c-accent);
  color: var(--c-bg);
  border: 2px solid var(--c-ink);
  box-shadow: var(--shadow-hard);
  text-align: center;
  overflow: hidden;
}
.final-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,10,0.08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.final h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 7vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
  text-wrap: balance;
  position: relative;
}
.final h2 em { font-style: normal; background: var(--c-ink); color: var(--c-accent); padding: 0 .15em; border-radius: 6px; transform: rotate(-2deg); display: inline-block; }
.final p { font-size: 1rem; color: rgba(10,10,10,.7); max-width: 540px; margin: 0 auto 1.5rem; position: relative; text-wrap: pretty; }
.final .btns { position: relative; display: flex; flex-direction: column; gap: .75rem; justify-content: center; align-items: stretch; }
.final .btns .btn { width: 100%; justify-content: center; }
.btn--final-primary { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); box-shadow: 6px 6px 0 var(--c-bg); }
.btn--final-primary:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--c-bg); }
.btn--final-secondary { background: transparent; color: var(--c-ink); border-color: var(--c-ink); box-shadow: none; }
.btn--final-secondary:hover { background: rgba(10,10,10,.08); }

@media (min-width: 600px) {
  .final { margin: 4rem 2rem; padding: 5rem 3rem; }
  .final p { font-size: 1.15rem; margin-bottom: 2rem; }
  .final .btns { flex-direction: row; align-items: center; }
  .final .btns .btn { width: auto; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 16px; right: 16px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #0a0a0a;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .9rem;
  padding: .9rem 1.2rem .9rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--c-ink);
  box-shadow: var(--shadow-hard);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.wa-float:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--c-ink); }
.wa-float .ico { width: 26px; height: 26px; border-radius: 50%; background: var(--c-bg); color: #25D366; display: grid; place-items: center; font-size: 1.1rem; }
.wa-float .ping { position: absolute; top: -4px; right: -4px; width: 14px; height: 14px; background: var(--c-accent-2); border-radius: 50%; border: 2px solid var(--c-bg); animation: pulse-soft 1.6s infinite; }
.wa-float--icon {
  padding: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: 4px 6px 0 var(--c-ink), 0 0 0 2px var(--c-ink);
  display: grid;
  place-items: center;
  overflow: visible;
}
.wa-float--icon .wa-img { width: 100%; height: 100%; border-radius: 50%; display: block; object-fit: contain; transition: transform .25s ease; }
.wa-float--icon:hover { transform: translate(-2px,-2px); box-shadow: 8px 10px 0 var(--c-ink), 0 0 0 2px var(--c-ink); }
.wa-float--icon:hover .wa-img { animation: wiggle .5s ease-in-out; }

@media (min-width: 601px) {
  .wa-float--icon { width: 68px; height: 68px; bottom: 20px; right: 20px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 2.5rem 1rem 4rem;
  border-top: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
  text-align: center;
  font-family: var(--f-mono);
  font-size: .95rem;
  color: var(--c-ink-mute);
}
.footer .logo { font-family: var(--f-display); justify-content: center; }
.footer-links { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: var(--c-ink-soft); }
.footer-links a:hover { color: var(--c-accent); }
.footer-end { text-align: center; }
.footer-end .copy { color: var(--c-ink-mute); }

@media (min-width: 801px) {
  .footer { grid-template-columns: auto 1fr auto; padding: 3rem 2rem 5rem; text-align: left; }
  .footer .logo { justify-content: flex-start; }
  .footer-end { text-align: right; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }