:root {
  --bg: #09090b;
  --card: #18181b;
  --border: #27272a;
  --border-l: #3f3f46;
  --violet: #7c3aed;
  --violet-l: #a78bfa;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: #f4f4f5;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════
   UTILITÁRIOS
══════════════════════════════════════════════════════════ */

/* Display */
.hidden       { display: none !important; }
.block        { display: block; }
.inline-block { display: inline-block; }
.inline-flex  { display: inline-flex; align-items: center; }
.flex         { display: flex; }
.grid         { display: grid; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.flex-1       { flex: 1 1 0%; }
.shrink-0     { flex-shrink: 0; }

/* Alinhamento */
.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.items-end      { align-items: flex-end; }
.justify-start  { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.text-center    { text-align: center; }
.text-left      { text-align: left; }
.text-right     { text-align: right; }

/* Gap */
.gap-0\.5 { gap: 2px; }
.gap-1    { gap: 4px; }
.gap-1\.5 { gap: 6px; }
.gap-2    { gap: 8px; }
.gap-2\.5 { gap: 10px; }
.gap-3    { gap: 12px; }
.gap-4    { gap: 16px; }
.gap-5    { gap: 20px; }
.gap-6    { gap: 24px; }
.gap-12   { gap: 48px; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0,1fr)); }

/* Colunas (masonry) */
.columns-1 { columns: 1; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.inset-0  { inset: 0; }
.top-0    { top: 0; }
.top-16   { top: 64px; }
.top-1\/2 { top: 50%; }
.left-0   { left: 0; }
.left-1\/2 { left: 50%; }
.right-0  { right: 0; }
.bottom-0 { bottom: 0; }
.-top-3\.5 { top: -14px; }
.z-10  { z-index: 10; }
.z-50  { z-index: 50; }
.z-90  { z-index: 90; }
.z-200 { z-index: 200; }

/* Transform */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* Pointer events / cursor */
.pointer-events-none { pointer-events: none; }
.cursor-pointer      { cursor: pointer; }
.cursor-default      { cursor: default; }

/* Object fit */
.object-contain { object-fit: contain; }

/* Opacidade */
.opacity-30 { opacity: 0.3; }

/* Sizing */
.w-auto   { width: auto; }
.w-full   { width: 100%; }
.w-px     { width: 1px; }
.w-4      { width: 16px; }
.w-9      { width: 36px; }
.w-64     { width: 256px; }
.h-3      { height: 12px; }
.h-4      { height: 16px; }
.h-9      { height: 36px; }
.h-16     { height: 64px; }
.h-28     { height: 112px; }
.h-32     { height: 128px; }
.h-40     { height: 160px; }
.h-48     { height: 192px; }
.min-h-screen { min-height: 100vh; }
.max-h-20 { max-height: 80px; }
.max-w-full { max-width: 100%; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto   { margin-left: auto; margin-right: auto; }

/* Padding */
.p-1   { padding: 4px; }
.p-5   { padding: 20px; }
.p-6   { padding: 24px; }
.p-7   { padding: 28px; }
.p-8   { padding: 32px; }
.p-9   { padding: 36px; }
.px-1  { padding-left: 4px;  padding-right: 4px; }
.px-3  { padding-left: 12px; padding-right: 12px; }
.px-4  { padding-left: 16px; padding-right: 16px; }
.px-6  { padding-left: 24px; padding-right: 24px; }
.px-8  { padding-left: 32px; padding-right: 32px; }
.py-2  { padding-top: 8px;   padding-bottom: 8px; }
.py-3  { padding-top: 12px;  padding-bottom: 12px; }
.py-4  { padding-top: 16px;  padding-bottom: 16px; }
.py-5  { padding-top: 20px;  padding-bottom: 20px; }
.py-10 { padding-top: 40px;  padding-bottom: 40px; }
.py-20 { padding-top: 80px;  padding-bottom: 80px; }
.py-28 { padding-top: 112px; padding-bottom: 112px; }
.pt-8  { padding-top: 32px; }
.pt-16 { padding-top: 64px; }
.pt-20 { padding-top: 80px; }
.pb-5  { padding-bottom: 20px; }
.pb-10 { padding-bottom: 40px; }
.pl-5  { padding-left: 1.25rem; }

/* Margin */
.mt-0\.5 { margin-top: 2px; }
.mt-4    { margin-top: 16px; }
.mt-5    { margin-top: 20px; }
.mt-10   { margin-top: 40px; }
.mt-12   { margin-top: 48px; }
.mb-1    { margin-bottom: 4px; }
.mb-2    { margin-bottom: 8px; }
.mb-3    { margin-bottom: 12px; }
.mb-4    { margin-bottom: 16px; }
.mb-5    { margin-bottom: 20px; }
.mb-6    { margin-bottom: 24px; }
.mb-7    { margin-bottom: 28px; }
.mb-8    { margin-bottom: 32px; }
.mb-9    { margin-bottom: 36px; }
.mb-10   { margin-bottom: 40px; }
.mb-12   { margin-bottom: 48px; }
.mb-16   { margin-bottom: 64px; }

/* Tipografia */
.text-xs   { font-size: 12px;  line-height: 16px; }
.text-sm   { font-size: 14px;  line-height: 20px; }
.text-lg   { font-size: 18px;  line-height: 28px; }
.text-xl   { font-size: 20px;  line-height: 28px; }
.text-2xl  { font-size: 24px;  line-height: 32px; }
.text-3xl  { font-size: 30px;  line-height: 36px; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }
.leading-relaxed { line-height: 1.625; }
.tracking-widest { letter-spacing: .1em; }
.uppercase    { text-transform: uppercase; }
.break-all    { word-break: break-all; }
.underline    { text-decoration: underline; }

/* Cores — texto */
.text-white    { color: #ffffff; }
.text-zinc-100 { color: #f4f4f5; }
.text-zinc-200 { color: #e4e4e7; }
.text-zinc-300 { color: #d4d4d8; }
.text-zinc-400 { color: #a1a1aa; }
.text-zinc-500 { color: #71717a; }
.text-zinc-600 { color: #52525b; }
.text-violet-400 { color: #a78bfa; }

/* Hover — cores */
.hover\:text-white:hover       { color: #ffffff; }
.hover\:text-zinc-200:hover    { color: #e4e4e7; }
.hover\:text-zinc-400:hover    { color: #a1a1aa; }
.hover\:text-violet-300:hover  { color: #c4b5fd; }

/* Cores — fundo */
.bg-transparent { background-color: transparent; }
.bg-zinc-950    { background-color: #09090b; }

/* Bordas */
.border      { border: 1px solid; }
.border-b    { border-bottom: 1px solid; }
.border-none { border: none; }
.border-zinc-800 { border-color: #27272a; }
.rounded     { border-radius: 4px; }
.rounded-xl  { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full{ border-radius: 9999px; }

/* Space-y */
.space-y-3   > * + * { margin-top: 12px; }
.space-y-3\.5 > * + * { margin-top: 14px; }
.space-y-4   > * + * { margin-top: 16px; }

/* Transição */
.transition-colors { transition: color .15s ease, background-color .15s ease, border-color .15s ease; }
.transition-all    { transition: all .15s ease; }
.duration-300      { transition-duration: 300ms; }

/* ── Responsivo: sm (640px+) ─────────────────────────────── */
@media (min-width: 640px) {
  .sm\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sm\:flex-row     { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:columns-2    { columns: 2; }
}

/* ── Responsivo: md (768px+) ─────────────────────────────── */
@media (min-width: 768px) {
  .md\:hidden      { display: none !important; }
  .md\:flex        { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* ── Responsivo: lg (1024px+) ────────────────────────────── */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .lg\:col-span-1  { grid-column: span 1 / span 1; }
  .lg\:columns-3   { columns: 3; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 99px; }

/* ── Gradiente de texto ── */
.text-gradient {
  background: linear-gradient(135deg, #a78bfa 0%, #e879f9 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Grid de fundo ── */
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ── Brilhos ── */
.glow-violet { box-shadow: none; }
.glow-border { box-shadow: inset 0 0 0 1px rgba(124,58,237,.25); }

/* ── Animações base ── */
@keyframes fadeUp    { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes glowPulse { 0%,100%{opacity:.4} 50%{opacity:.9} }
@keyframes pulse     { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes ticker    { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes shimmer   { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes floatY    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.anim { opacity: 0; }
.anim.visible { animation: fadeUp .65s ease forwards; }
.anim-d1 { animation-delay: .1s !important; }
.anim-d2 { animation-delay: .22s !important; }
.anim-d3 { animation-delay: .34s !important; }
.anim-d4 { animation-delay: .46s !important; }
.anim-d5 { animation-delay: .58s !important; }

/* ── Hero glow ── */
.hero-glow {
  position: absolute; top: 38%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 700px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(124,58,237,.28) 0%, rgba(99,102,241,.08) 45%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

/* ── Dot pulse ── */
.dot-pulse { animation: pulse 2s infinite; }

/* ── Ticker ── */
.ticker-track {
  display: flex; gap: 40px; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  white-space: nowrap; font-size: 12px; font-weight: 600;
  letter-spacing: .15em; color: #52525b;
  transition: color .2s;
}
.ticker-wrap:hover .ticker-track span { color: #71717a; }
.ticker-track span::before { content: '◆'; margin-right: 40px; color: #3f3f46; }

/* ── Result cards ── */
.result-card {
  border: 1px solid var(--border);
  background: rgba(24,24,27,.6);
  border-radius: 16px; padding: 24px;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
  cursor: default;
  position: relative;
  z-index: 1;
}
.result-card:hover {
  border-color: var(--border-l);
  background: #18181b;
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: none;
}
.result-card:hover .result-icon {
  background: rgba(124,58,237,.22) !important;
  box-shadow: none;
}
.result-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.1);
  transition: background .3s, box-shadow .3s;
}

/* ── Plan cards ── */
.plan-card {
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .25s, box-shadow .3s;
  position: relative;
  z-index: 1;
}
.plan-card:not(.plan-featured):hover {
  border-color: var(--border-l) !important;
  transform: translateY(-3px);
  z-index: 2;
  box-shadow: none;
}
.plan-card.plan-featured {
  z-index: 2;
}
.plan-card.plan-featured:hover {
  z-index: 3;
  box-shadow: none;
}
@media (min-width: 768px) {
  .plan-featured { transform: translateY(-16px); }
  .plan-card.plan-featured:hover { transform: translateY(-20px); }
}

/* ── Portfolio cards ── */
.portfolio-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  background: #18181b;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.portfolio-card:hover {
  border-color: var(--border-l);
  transform: translateY(-5px);
  box-shadow: none;
}
.portfolio-card:hover .portfolio-preview-glow { opacity: 1.5; }
.portfolio-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: #d4d4d8;
  border: 1px solid #3f3f46; background: transparent;
  transition: all .2s; text-decoration: none;
}
.portfolio-card:hover .portfolio-btn { border-color: #71717a; color: white; }

/* ── Testimonial cards ── */
.testimonial-card {
  border: 1px solid var(--border);
  background: rgba(24,24,27,.7);
  border-radius: 16px; padding: 24px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  break-inside: avoid; margin-bottom: 16px;
}
.testimonial-card:hover {
  border-color: var(--border-l);
  transform: translateY(-3px);
  box-shadow: none;
}

/* ── Botões — arrow slide ── */
.btn-arrow {
  display: inline-flex; align-items: center;
  transition: transform .2s ease;
}
a:hover .btn-arrow,
button:hover .btn-arrow { transform: translateX(4px); }

/* ── FAQ ── */
.faq-content {
  overflow: hidden; max-height: 0;
  transition: max-height .35s ease;
}
.faq-item.open .faq-content { max-height: 300px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: #a78bfa; }
.faq-chevron { transition: transform .25s ease, color .2s; }
.faq-trigger {
  transition: color .2s, padding-left .2s;
}
.faq-item.open .faq-trigger { color: white; }

/* ── Stats counter ── */
.stat-num {
  display: block;
  font-weight: 900; color: white;
  transition: color .3s;
}
.stat-num.counting { color: #a78bfa; }

/* ── Nav link active indicator ── */
.nav-link {
  position: relative;
  padding: 8px 16px; font-size: 14px;
  color: #a1a1aa; border-radius: 8px;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px;
  background: var(--violet-l);
  transition: width .25s ease;
}
.nav-link:hover { color: white; background: rgba(255,255,255,.06); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: white; }
.nav-link.active::after { width: 60%; }

/* ── WhatsApp float button ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: floatY 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px) !important;
  box-shadow: none;
  animation-play-state: paused;
}

/* ── Section label line ── */
.section-label-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: #a78bfa;
}
.section-label-line::before,
.section-label-line::after {
  content: ''; display: block;
  width: 24px; height: 1px; background: rgba(167,139,250,.3);
}

/* ── Badge / pill ────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 9999px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(124,58,237,.35);
  background: rgba(124,58,237,.12);
  color: #a78bfa;
}
.badge-green {
  border-color: rgba(52,211,153,.3);
  background: rgba(52,211,153,.1);
  color: #6ee7b7;
}
.badge-red {
  border-color: rgba(248,113,113,.3);
  background: rgba(248,113,113,.1);
  color: #fca5a5;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* ── Títulos ─────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: #a78bfa; margin-bottom: 16px;
}
.section-title {
  font-weight: 900; color: white;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.1; letter-spacing: -1px;
}
.hero-title {
  font-weight: 900; color: white;
  font-size: clamp(36px, 6.5vw, 72px);
  letter-spacing: -1.5px; line-height: 1.08;
}
.cta-title {
  font-weight: 900; color: white;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08; letter-spacing: -1.5px;
}

/* ── Chip (tags de tecnologia, etc.) ─────────────────────── */
.chip {
  display: inline-block;
  padding: 4px 10px; border-radius: 9999px;
  font-size: 12px; font-weight: 500; color: #a1a1aa;
  border: 1px solid #3f3f46; background: rgba(255,255,255,.04);
}

/* ── Cards contextuais (seção Sobre) ─────────────────────── */
.card-danger {
  border: 1px solid rgba(239,68,68,.25);
  background: rgba(239,68,68,.06);
  box-shadow: 0 0 32px -10px rgba(239,68,68,.2);
}
.card-violet {
  border: 1px solid rgba(124,58,237,.4);
  background: rgba(124,58,237,.08);
  box-shadow: 0 0 32px -10px rgba(124,58,237,.35);
}

/* ── Hero overlays ───────────────────────────────────────── */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(46,16,101,.35) 0%, rgba(46,16,101,.1) 40%, transparent 70%);
}
.hero-glow-2 {
  position: absolute; pointer-events: none;
  top: 30%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,.2) 0%, transparent 65%);
  animation: glowPulse 3s ease-in-out infinite .5s;
}
.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 192px;
  background: linear-gradient(to top, #09090b, transparent); pointer-events: none;
}

/* ── Sobre ───────────────────────────────────────────────── */
.overlay-red-tl {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top left, rgba(239,68,68,.18) 0%, transparent 60%);
}
.overlay-violet-tr {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(124,58,237,.25) 0%, transparent 60%);
}
.icon-btn-danger {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.25);
}
.icon-btn-violet {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.2); border: 1px solid rgba(124,58,237,.3);
}

/* ── Serviços ────────────────────────────────────────────── */
.divider-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(124,58,237,.6), transparent);
}
.metric-label { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: #71717a; }

/* ── Portfólio ───────────────────────────────────────────── */
.portfolio-preview {
  background: linear-gradient(135deg, #0d0d14, #18182a);
  border-bottom: 1px solid #27272a;
}
.portfolio-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.badge-sm { font-size: 11px !important; padding: 4px 12px !important; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid #27272a; }
.faq-contact-card {
  border: 1px solid rgba(124,58,237,.25);
  background: rgba(124,58,237,.06);
  border-radius: 16px; padding: 32px; text-align: center; margin-top: 56px;
}

/* ── CTA ─────────────────────────────────────────────────── */
.cta-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(124,58,237,.18), transparent);
}

/* ── Cookie banner ───────────────────────────────────────── */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200; padding: 12px 16px 20px;
}
.cookie-inner {
  background: rgba(15,15,17,.98); border: 1px solid #3f3f46;
  backdrop-filter: blur(24px); box-shadow: 0 -4px 48px rgba(0,0,0,.6);
  border-radius: 16px; padding: 20px;
}
.cookie-decline { border: 1px solid #3f3f46; color: #a1a1aa; }

/* ── Botões ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: white;
  background: #7c3aed; transition: all .2s; text-decoration: none;
}
.btn-primary:hover { background: #8b5cf6; transform: translateY(-1px); }

.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px;
  font-size: 16px; font-weight: 600; color: white;
  background: #7c3aed; transition: all .2s; text-decoration: none;
}
.btn-primary-lg:hover { background: #8b5cf6; transform: translateY(-1px); }

.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px;
  font-size: 16px; font-weight: 600; color: #d4d4d8;
  border: 1px solid #3f3f46; background: transparent;
  transition: all .2s; text-decoration: none;
}
.btn-outline-lg:hover { color: white; border-color: #71717a; background: rgba(39,39,42,.5); }

.btn-footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: white;
  background: rgba(124,58,237,.25); border: 1px solid rgba(124,58,237,.35);
  transition: all .2s; text-decoration: none;
}
.btn-footer-wa:hover { background: rgba(124,58,237,.4); transform: translateY(-1px); }

.nav-cta-btn {
  display: none; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: white;
  background: #7c3aed; transition: all .2s; text-decoration: none;
}
@media (min-width: 768px) { .nav-cta-btn { display: inline-flex; } }
.nav-cta-btn:hover { background: #8b5cf6; transform: translateY(-1px); }

.btn-mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; padding: 12px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: white;
  background: #7c3aed; text-decoration: none; transition: all .2s;
}
.btn-mobile-cta:hover { background: #8b5cf6; }

.cookie-accept {
  padding: 8px 16px; border-radius: 12px;
  font-size: 12px; font-weight: 600; color: white;
  background: #7c3aed; border: none; cursor: pointer; transition: background .2s;
}
.cookie-accept:hover { background: #8b5cf6; }

/* ── Header ──────────────────────────────────────────────── */
#header { transition: background .3s, border-color .3s; }
#header.scrolled { background: rgba(9,9,11,.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 50;
  flex-direction: column; gap: 4px; padding: 16px 24px;
  background: rgba(9,9,11,.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid #27272a;
}
.mobile-nav-link {
  display: block; padding: 12px 0; font-size: 14px;
  color: #a1a1aa; border-bottom: 1px solid rgba(39,39,42,.5);
  text-decoration: none; transition: color .2s;
}
.mobile-nav-link:hover { color: white; }

/* ── Footer ──────────────────────────────────────────────── */
.footer-wrap      { border-top: 1px solid rgba(255,255,255,.06); background: rgba(9,9,11,.8); }
.footer-dot       { width: 4px; height: 4px; border-radius: 50%; background: #7c3aed; display: inline-block; flex-shrink: 0; }
.footer-bottom    { border-top: 1px solid rgba(255,255,255,.05); }
.footer-col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: #71717a; margin-bottom: 20px; display: block; }
.footer-nav-link  { display: flex; align-items: center; gap: 8px; color: #71717a; font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-nav-link:hover { color: #e4e4e7; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-link { color: #a1a1aa; font-size: 14px; text-decoration: none; transition: color .2s; word-break: break-all; }
.footer-contact-link:hover { color: #e4e4e7; }
.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  color: #52525b; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: color .22s, background .22s, border-color .22s, transform .22s, box-shadow .22s;
  text-decoration: none;
}
.footer-social-btn:hover { transform: translateY(-2px); }

.footer-social-ig:hover {
  color: #e1306c;
  background: rgba(225,48,108,.1);
  border-color: rgba(225,48,108,.3);
  box-shadow: 0 4px 18px rgba(225,48,108,.18);
}
.footer-social-li:hover {
  color: #0a66c2;
  background: rgba(10,102,194,.12);
  border-color: rgba(10,102,194,.3);
  box-shadow: 0 4px 18px rgba(10,102,194,.2);
}
.footer-diag-card { margin-top: 32px; padding: 16px; border-radius: 12px; background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.2); }
.footer-diag-link {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #a78bfa;
  transition: color .2s; text-decoration: none;
}
.footer-diag-link:hover { color: white; }

/* ── Planos (oculto) ─────────────────────────────────────── */
.plan-card-base     { border: 1px solid #27272a; background: rgba(24,24,27,.6); }
.plan-card-featured { border: 1px solid rgba(124,58,237,.5); background: linear-gradient(160deg, rgba(124,58,237,.12) 0%, rgba(24,24,27,.9) 60%); }
.plan-badge-label   { background: linear-gradient(135deg,#7c3aed,#6366f1); box-shadow: 0 4px 16px rgba(124,58,237,.5); }
.btn-plan-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: white;
  background: #7c3aed; transition: all .2s; text-decoration: none;
}
.btn-plan-primary:hover { background: #8b5cf6; transform: translateY(-1px); }
.btn-plan-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: #d4d4d8;
  border: 1px solid #3f3f46; background: transparent;
  transition: all .2s; text-decoration: none;
}
.btn-plan-outline:hover { color: white; border-color: #71717a; background: rgba(39,39,42,.5); }

/* ── Depoimentos (oculto) ────────────────────────────────── */
.avatar-gradient { background: linear-gradient(135deg,#7c3aed,#6366f1); }
.metric-pill     { background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2); color: #a78bfa; }

/* ── Páginas de política ─────────────────────────────────── */
.privacy-body ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.privacy-body li { line-height: 1.6; }
.cookie-table { border-collapse: collapse; width: 100%; }
.cookie-table th,
.cookie-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid #27272a; vertical-align: top; line-height: 1.55; color: #a1a1aa; }
.cookie-table th { background: #18181b; color: #e4e4e7; font-weight: 600; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.cookie-table tr:hover td { background: rgba(255,255,255,.02); }
.cookie-table td:first-child { font-family: monospace; font-size: .8rem; color: #c4b5fd; white-space: nowrap; }
