/* ================================================================
   FONTE DO MAGAL — Design System (site público)
   Os estilos que ficavam em cada .vue com <style scoped> foram
   reunidos aqui, na ordem em que as seções aparecem na página.
   ================================================================ */

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  /* Brand */
  --amber:        #e08b02;
  --amber-dark:   #b86f00;
  --amber-light:  #f5a030;
  --amber-dim:    rgba(224, 139, 2, 0.12);
  --amber-glow:   rgba(224, 139, 2, 0.22);

  /* Surfaces */
  --white:        #ffffff;
  --warm-0:       #fdfcf8;
  --warm-1:       #f9f6ef;
  --warm-2:       #f2ede0;
  --dark-0:       #090909;
  --dark-1:       #111111;
  --dark-2:       #1b1b1b;

  /* Ink */
  --ink:          #0a0a0a;
  --ink-2:        #2c2c2c;
  --ink-3:        #555555;
  --ink-4:        #8a8a8a;
  --ink-5:        #b8b8b8;
  --ink-inv:      #ffffff;
  --ink-inv-2:    rgba(255, 255, 255, 0.65);
  --ink-inv-3:    rgba(255, 255, 255, 0.35);

  /* Glass — claro (sobre fundo branco/quente) */
  --gl:           rgba(255, 255, 255, 0.68);
  --gl-s:         rgba(255, 255, 255, 0.88);
  --gl-border:    rgba(255, 255, 255, 0.9);
  --gl-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 8px 32px rgba(224, 139, 2, 0.07),
    0 2px 8px  rgba(0, 0, 0, 0.05);

  /* Glass — escuro (sobre fundo preto) */
  --gd:           rgba(18, 18, 18, 0.6);
  --gd-s:         rgba(12, 12, 12, 0.78);
  --gd-border:    rgba(255, 255, 255, 0.08);
  --gd-border-a:  rgba(224, 139, 2, 0.3);
  --gd-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 12px 48px rgba(0, 0, 0, 0.55),
    0 2px 8px  rgba(0, 0, 0, 0.3);

  /* Bordas */
  --b-xs:    rgba(0, 0, 0, 0.05);
  --b-sm:    rgba(0, 0, 0, 0.09);
  --b-md:    rgba(0, 0, 0, 0.15);

  /* Raios */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Layout */
  --max-w:      1200px;
  --header-h:   66px;

  /* Tipografia */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Movimento */
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --spring:   cubic-bezier(.34, 1.56, .64, 1);

  /* Paleta das seções escuras (canais, números, FAQ, preços, infra) */
  --bg:            #090909;
  --bg-2:          #0d0d0d;
  --bg-4:          #1a1a1a;
  --bg-card:       #111111;
  --bg-gradient:   linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  --border:        rgba(255, 255, 255, 0.08);
  --border-hover:  rgba(255, 255, 255, 0.18);
  --text:          #f5f5f7;
  --text-muted:    rgba(255, 255, 255, 0.6);
  --primary:       #e08b02;
  --primary-border: rgba(224, 139, 2, 0.3);
  --primary-glow:  rgba(224, 139, 2, 0.12);
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-glow:   0 0 40px rgba(224, 139, 2, 0.12);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
ul, ol   { list-style: none; }
button   { font-family: var(--font); cursor: pointer; border: none; background: none; color: inherit; }

/* ── Tipografia ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
}

p { color: var(--ink-3); line-height: 1.7; }

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 104px 0; }

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ── Vidro ────────────────────────────────────────────────────── */
.glass {
  background: var(--gl);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--gl-border);
  box-shadow: var(--gl-shadow);
}

.glass-strong {
  background: var(--gl-s);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--gl-border);
  box-shadow: var(--gl-shadow);
}

.glass-dark {
  background: var(--gd);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--gd-border);
  box-shadow: var(--gd-shadow);
}

/* ── Botões ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.18s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn-black { background: var(--ink); color: var(--white); }
.btn-black:hover {
  background: var(--dark-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.btn-amber, .btn-primary {
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
}
.btn-amber:hover, .btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224, 139, 2, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--b-md);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn-outline-inv {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn-outline-inv:hover { border-color: rgba(255, 255, 255, 0.55); transform: translateY(-1px); }

.btn-telegram { background: #229ED9; color: #fff; font-weight: 700; }
.btn-telegram:hover {
  background: #1a8bc2;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.38);
}

.btn-lg { padding: 15px 32px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px;  font-size: 0.8rem; }

/* ── Rótulo de seção ──────────────────────────────────────────── */
.label, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.label::before, .section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
  flex-shrink: 0;
}
.label-inv        { color: rgba(224, 139, 2, 0.85); }
.label-inv::before { background: rgba(224, 139, 2, 0.85); }

/* ── Cabeçalho de seção ───────────────────────────────────────── */
.section-heading {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-3);
  max-width: 520px;
  line-height: 1.68;
}

/* Variante das seções escuras */
.section-header { margin-bottom: 48px; }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 14px;
  color: var(--text);
}
.section-title span { color: var(--amber); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.68;
}

.divider {
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(224, 139, 2, 0.15));
  margin-top: 22px;
}

.gradient-text {
  background: linear-gradient(100deg, var(--amber-light), var(--amber) 55%, var(--amber-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Fundos escuros e cartão padrão das seções escuras */
.bg-dark-2 { background: var(--bg-2); }
.bg-dark-3 { background: var(--bg-card); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ── Inline amber ─────────────────────────────────────────────── */
.a { color: var(--amber); }

/* ── Lista com check ──────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--ink-3);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--amber-dim) url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.5 6L8 1' stroke='%23e08b02' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  border: 1px solid rgba(224, 139, 2, 0.35);
  margin-top: 2px;
}

/* ── Ruído ────────────────────────────────────────────────────── */
.has-noise { position: relative; }
.has-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
}

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes amber-breathe {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.28; transform: scale(1.06); }
}
@keyframes bar-live {
  from { opacity: 0.4; transform: scaleY(0.85); }
  to   { opacity: 0.85; transform: scaleY(1); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px #22c55e; }
  50%       { box-shadow: 0 0 14px #22c55e, 0 0 24px rgba(34,197,94,0.4); }
}

/* ── Responsivo base ──────────────────────────────────────────── */
@media (max-width: 768px) {
  section     { padding: 72px 0; }
  .container  { padding: 0 20px; }
}
@media (max-width: 480px) {
  section { padding: 56px 0; }
}

/* ================================================================
   CABEÇALHO
   ================================================================ */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  transition:
    background   0.32s var(--ease),
    border-color 0.32s var(--ease),
    box-shadow   0.32s var(--ease);
}

.header.is-top {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--b-xs);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 8px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  flex-shrink: 0;
  text-decoration: none;
}

.wm-signal { color: var(--amber); display: flex; align-items: center; transition: color 0.2s; }

.wm-text { display: flex; flex-direction: column; line-height: 1; gap: 1px; }

.wm-sup {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  transition: color 0.32s;
}

.wm-name {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink-inv);
  transition: color 0.32s;
}

.is-scrolled .wm-name { color: var(--ink); }
.is-scrolled .wm-sup  { color: var(--ink-4); }
.is-top .wm-name      { color: var(--ink-inv); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-links a {
  padding: 6px 13px;
  font-size: 0.865rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  letter-spacing: -0.01em;
  transition: color 0.18s, background 0.18s;
  color: var(--ink-inv-2);
}

.nav-links a:hover     { color: var(--ink-inv);  background: rgba(255, 255, 255, 0.1); }
.nav-links a.is-active { color: var(--amber); font-weight: 600; }

.is-scrolled .nav-links a           { color: var(--ink-3); }
.is-scrolled .nav-links a:hover     { color: var(--ink); background: var(--b-xs); }
.is-scrolled .nav-links a.is-active { color: var(--amber); }

.nav-end { display: flex; align-items: center; gap: 8px; margin-left: 16px; }

.is-top .btn-black {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ink-inv);
  backdrop-filter: blur(8px);
}
.is-top .btn-black:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--ink-inv);
  transition: transform 0.22s var(--ease), opacity 0.22s;
}

.is-scrolled .hamburger span { background: var(--ink); }

.hamburger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.header .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: -1;
}
.header .overlay[hidden] { display: none; }

@media (max-width: 768px) {
  .nav-end .btn-black { display: none; }
  .hamburger          { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    right: 0; bottom: 0;
    width: 260px;
    background: var(--white);
    border-left: 1px solid var(--b-sm);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 14px;
    gap: 3px;
    transform: translateX(100%);
    transition: transform 0.28s var(--ease-out);
    z-index: 800;
  }

  .nav-links.is-open { transform: translateX(0); }

  .nav-links a {
    color: var(--ink-3) !important;
    padding: 12px 16px;
    border-radius: var(--r-md);
    font-size: 0.95rem;
  }

  .nav-links a:hover     { color: var(--ink) !important; background: var(--warm-0) !important; }
  .nav-links a.is-active { color: var(--amber) !important; }
}

/* ================================================================
   HERO (home)
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark-0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: var(--header-h) 0 0;
}

.hero-atm { position: absolute; inset: 0; pointer-events: none; }

.atm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: amber-breathe 8s ease-in-out infinite;
}

.atm-1 {
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(224,139,2,0.2) 0%, transparent 65%);
  top: -260px; right: -160px;
}

.atm-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(224,139,2,0.07) 0%, transparent 70%);
  bottom: 80px; left: -80px;
  animation-delay: 3s;
}

.atm-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 110% 90% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 110% 90% at 50% 50%, black 20%, transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 80px;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }

.hero-h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.93;
  color: var(--ink-inv);
  margin-bottom: 28px;
}

.h1-accent { color: var(--amber); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-inv-2);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.sig-card {
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sig-header { display: flex; align-items: center; gap: 8px; }

.sig-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.sig-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-inv-2);
  letter-spacing: 0.02em;
  flex: 1;
}

.sig-status {
  font-size: 0.7rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sig-bars { display: flex; align-items: flex-end; gap: 3px; height: 64px; }

.sig-bar {
  flex: 1;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
  opacity: 0.7;
  min-height: 4px;
  animation: bar-live 1.8s ease-in-out infinite alternate;
}

.sig-metrics {
  display: flex;
  border-top: 1px solid var(--gd-border);
  padding-top: 16px;
}

.sig-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 4px;
}

.sig-metric + .sig-metric { border-left: 1px solid var(--gd-border); padding-left: 16px; }

.sig-metric strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-inv);
  letter-spacing: -0.03em;
}

.sig-metric span { font-size: 0.68rem; color: var(--ink-inv-3); font-weight: 500; }

.amber-val, .amber-val strong { color: var(--amber); }

.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.strip-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }

.ss-num {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink-inv);
  line-height: 1;
}

.ss-lbl { font-size: 0.68rem; color: var(--ink-inv-3); font-weight: 500; text-align: center; }

.strip-div { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-signal { order: -1; }
  .sig-card { max-width: 480px; }
}

@media (max-width: 640px) {
  .hero-h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .strip-div { display: none; }
  .strip-inner { justify-content: flex-start; gap: 20px 32px; }
  .hero-layout { padding-top: 40px; padding-bottom: 56px; }
}

/* ================================================================
   CANAIS
   ================================================================ */
.channels-section { padding-bottom: 80px; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.category-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}

.category-card:hover { border-color: var(--primary-border); transform: translateY(-3px); }

.cat-icon { display: inline-flex; color: var(--amber); line-height: 1; }

.cat-name { font-size: 1rem; font-weight: 700; color: var(--text); }

.cat-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; flex: 1; }

.channels-logos { text-align: center; }

.logos-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 14px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* logos são brancos com fundo transparente: cinza no repouso, branco no hover */
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.logo-badge:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.logo-badge:hover img { opacity: 1; }

@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); }
}

/* ================================================================
   NÚMEROS
   ================================================================ */
.stats-section { padding: 96px 0; }

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.stats-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.stats-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

.stats-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: var(--bg-card);
  gap: 8px;
  text-align: center;
  transition: background 0.2s;
}

.stat-block:hover { background: var(--bg-4); }

.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-desc { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; text-align: center; }

@media (max-width: 900px) {
  .stats-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-text { align-items: center; text-align: center; }
  .stats-heading { text-align: center; }
}

@media (max-width: 480px) {
  .stats-numbers { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.5rem; }
}

/* ================================================================
   DIFERENCIAIS (bento)
   ================================================================ */
.features { background: var(--warm-0); }

.feat-header { margin-bottom: 52px; }

.bento {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.bento-hero {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: var(--r-xl);
  padding: 36px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.bento-sm:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento-sm:nth-child(3) { grid-column: 3; grid-row: 1; }
.bento-sm:nth-child(4) { grid-column: 2; grid-row: 2; }
.bento-sm:nth-child(5) { grid-column: 3; grid-row: 2; }

.bento-wide {
  grid-column: 1 / 4;
  border-radius: var(--r-xl);
  padding: 36px 40px;
}

.bento-sm {
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  cursor: default;
}

.bento-sm:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.8) inset,
    0 16px 48px rgba(224,139,2,0.1),
    0 4px 12px rgba(0,0,0,0.06);
}

.bh-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,139,2,0.22) 0%, transparent 65%);
  top: -120px; right: -80px;
  pointer-events: none;
  animation: amber-breathe 6s ease-in-out infinite;
}

.bh-body { position: relative; z-index: 1; }

.bh-metric { display: flex; align-items: flex-start; line-height: 1; margin-bottom: 4px; }

.bh-pct {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--amber);
}

.bh-pct-sup {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  margin-top: 8px;
  letter-spacing: -0.04em;
}

.bh-metric-lbl {
  font-size: 0.68rem;
  color: var(--ink-inv-3);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.bento-hero h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink-inv);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  line-height: 1.1;
}

.bh-desc { font-size: 0.85rem; color: var(--ink-inv-2); line-height: 1.65; max-width: 340px; }

.bh-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 52px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  opacity: 0.5;
}

.bh-bars span {
  flex: 1;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  animation: bar-live 2s ease-in-out infinite alternate;
}

.bs-num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.bs-unit { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.03em; }

.bento-sm h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.bento-sm p { font-size: 0.78rem; color: var(--ink-4); line-height: 1.55; }

.amber { color: var(--amber); }

.bw-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.bw-text p { font-size: 0.875rem; color: var(--ink-3); line-height: 1.68; max-width: 640px; }

@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr 1fr; }
  .bento-hero { grid-column: 1 / 3; grid-row: 1 / 3; }
  .bento-sm:nth-child(2) { grid-column: 3; grid-row: 1; }
  .bento-sm:nth-child(3) { grid-column: 3; grid-row: 2; }
  .bento-sm:nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-sm:nth-child(5) { grid-column: 2; grid-row: 3; }
  .bento-wide { grid-column: 1 / 4; }
}

@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bento-hero { grid-column: 1 / 3; grid-row: auto; min-height: 300px; }
  .bento-sm:nth-child(2),
  .bento-sm:nth-child(3),
  .bento-sm:nth-child(4),
  .bento-sm:nth-child(5) { grid-column: span 1; grid-row: auto; }
  .bento-wide { grid-column: 1 / 3; }
}

@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr; }
  .bento-hero, .bento-wide { grid-column: 1; }
  .bento-sm:nth-child(n) { grid-column: 1; }
}

/* ================================================================
   PLANOS (seção da home) + CARTÃO DE PLANO
   ================================================================ */
.pricing { background: var(--warm-0); position: relative; overflow: hidden; }

.pricing-bg { position: absolute; inset: 0; pointer-events: none; }

.pb-blob { position: absolute; border-radius: 50%; filter: blur(70px); }

.pb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(224,139,2,0.12) 0%, transparent 70%);
  top: -100px; right: 5%;
}

.pb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(240,180,60,0.08) 0%, transparent 70%);
  bottom: 0; left: 10%;
}

.pb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(224,139,2,0.07) 0%, transparent 70%);
  top: 50%; right: 30%;
}

.pricing-header { margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.pricing-footer {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gl-border);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pf-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 20px;
}

.pf-item:first-child { padding-left: 0; }

.pf-icon { color: var(--amber); margin-bottom: 4px; display: flex; }

.pf-item strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.pf-item span { font-size: 0.75rem; color: var(--ink-4); line-height: 1.45; }

.pf-sep { width: 1px; background: var(--b-sm); align-self: stretch; flex-shrink: 0; }

.pricing-note { font-size: 0.75rem; color: var(--ink-5); text-align: center; }

/* Cartão */
.pcard {
  position: relative;
  border-radius: var(--r-xl);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
  cursor: default;
}

.pcard:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.8) inset,
    0 20px 56px rgba(224,139,2,0.12),
    0 4px 16px rgba(0,0,0,0.07);
}

/* Os cartões ficam sobre uma seção escura, e o vidro translúcido de
   .glass deixava eles cinzas. Aqui vão brancos sólidos, como na home —
   as cores de texto já são as do tema claro, então batem sozinhas. */
.pcard { background: var(--white); border-color: var(--b-sm); }

.pcard--hi {
  background: var(--white);
  border-color: rgba(224,139,2,0.4);
  box-shadow:
    0 0 0 1px rgba(224,139,2,0.25) inset,
    0 12px 40px rgba(224,139,2,0.14),
    0 3px 10px rgba(0,0,0,0.06);
}

.pcard--hi:hover {
  box-shadow:
    0 0 0 1px rgba(224,139,2,0.3) inset,
    0 24px 64px rgba(224,139,2,0.18),
    0 6px 20px rgba(0,0,0,0.08);
}

.pcard-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.pcard-top { display: flex; flex-direction: column; gap: 6px; }

.pcard-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.pcard--hi .pcard-name { color: var(--amber); }

.pcard-conns { display: flex; align-items: baseline; gap: 5px; }

.pcard-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}

.pcard--hi .pcard-num { color: var(--amber); }

.pcard-unit { font-size: 0.9rem; font-weight: 500; color: var(--ink-4); letter-spacing: -0.01em; }

.pcard-price { display: flex; align-items: baseline; gap: 2px; }

.pcard-cur { font-size: 0.95rem; font-weight: 600; color: var(--ink-4); }

.pcard-val {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.pcard-per { font-size: 0.85rem; color: var(--ink-4); margin-left: 2px; }

.pcard-ratio { font-size: 0.72rem; color: var(--ink-5); margin-top: -8px; }

.pcard-div { height: 1px; background: var(--b-xs); }

.pcard-feats { flex: 1; }

.pcard-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 13px 20px;
}

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .pricing-footer { gap: 16px; padding: 20px; }
  .pf-sep { display: none; }
  .pf-item { padding: 0; min-width: 120px; }
}

@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { background: var(--bg-gradient); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: flex-start;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--primary-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.faq-question:hover { background: var(--bg-4); }

.faq-item.open .faq-question { color: var(--primary); background: var(--bg-4); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease), color 0.2s;
  display: flex;
}

.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out);
}

.faq-answer:not([hidden]) { max-height: 400px; }

.faq-answer[hidden] { display: block !important; visibility: hidden; }

.faq-answer-inner { padding: 20px 24px 24px; }

.faq-answer-inner p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

.contact-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  text-align: center;
}

.contact-icon { color: var(--amber); display: flex; }

.contact-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }

.contact-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.contact-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  width: 100%;
}

.contact-stat { display: flex; flex-direction: column; gap: 2px; }

.contact-stat-value { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

.contact-stat-label { font-size: 0.72rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}

/* ================================================================
   CTA FINAL (home)
   ================================================================ */
.final-cta { padding: 96px 0; background: var(--bg-2); }

.cta-box {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 40px;
  background: rgba(224, 139, 2, 0.04);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224,139,2,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.cta-text { font-size: 1rem; color: var(--text-muted); max-width: 500px; line-height: 1.7; }

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

@media (max-width: 640px) { .cta-box { padding: 40px 24px; } }

/* ================================================================
   PÁGINA DE PREÇOS
   ================================================================ */
.precos-page, .infra-page { background: var(--bg); }

.precos-page .check-list li,
.infra-page .check-list li { color: var(--text-muted); }

/* Dentro do cartão branco vale o cinza do tema claro, como na home —
   o --text-muted acima é claro por causa do fundo escuro da seção. */
.precos-page .pcard .check-list li { color: var(--ink-3); }

.precos-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 80px;
  overflow: hidden;
}

.precos-page .hero-bg, .infra-page .hero-bg { position: absolute; inset: 0; pointer-events: none; }

.precos-page .hero-glow {
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--primary); filter: blur(100px); opacity: 0.07;
  top: -50px; right: 10%;
}

.precos-hero-content {
  position: relative; z-index: 1; max-width: 680px;
  margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}

.precos-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text);
}

.precos-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 540px; line-height: 1.7;
}

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

.toggle-btn {
  position: relative;
  padding: 8px 24px; border-radius: 7px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer;
  transition: all 0.2s; border: none; background: none;
  display: flex; align-items: center; gap: 8px;
}

.toggle-btn.active {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.toggle-btn:disabled { cursor: not-allowed; opacity: 0.6; }

.coming-soon {
  font-size: 0.65rem; font-weight: 600;
  background: var(--primary-glow); color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 1px 6px; border-radius: 4px;
}

.precos-page .pricing-grid { gap: 16px; margin-bottom: 0; }

.table-wrapper {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}

.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.85rem; min-width: 800px;
}

.comparison-table th {
  padding: 16px 14px; text-align: center;
  background: var(--bg-4); font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table th.highlighted {
  background: var(--primary-glow);
  color: var(--primary);
  border-color: var(--primary-border);
}

.th-conns {
  display: block; font-size: 0.75rem;
  color: var(--text-muted); font-weight: 400;
  margin-top: 2px;
}

.comparison-table td {
  padding: 12px 14px; text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table td.highlighted {
  background: rgba(224,139,2,0.03);
  border-color: rgba(224,139,2,0.1);
}

.comparison-table tfoot td { background: var(--bg-4); border-bottom: none; }

.comparison-table td span { display: inline-flex; justify-content: center; }

.feature-col {
  text-align: left !important; font-weight: 500;
  color: var(--text) !important;
  white-space: nowrap;
  background: var(--bg-card);
}

.check-yes { color: #00d084; }
.check-no  { color: var(--border-hover); }
.table-text { color: var(--text); font-weight: 500; }
.price-cell { color: var(--primary); font-size: 1rem; font-weight: 800; }

.table-btn {
  padding: 8px 16px; font-size: 0.8rem;
  margin: 4px auto; display: inline-flex;
}

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 48px;
}

.step {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-number {
  font-size: 2.5rem; font-weight: 900;
  color: var(--primary); line-height: 1;
  letter-spacing: -0.05em; opacity: 0.6;
}

.step h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.how-cta { text-align: center; }

.precos-faq { background: var(--bg); }

.precos-page .faq-list { max-width: 800px; margin: 0 auto; }

@media (max-width: 1100px) { .precos-page .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) {
  .precos-page .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PÁGINA DE INFRAESTRUTURA
   ================================================================ */
.infra-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 80px;
  overflow: hidden;
}

.infra-page .hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.08;
  top: -100px; left: 50%;
  transform: translateX(-50%);
}

.infra-page .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}

.infra-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.infra-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.infra-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.infra-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.uptime-banner { padding: 40px 0; }

.uptime-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.uptime-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.uptime-value {
  font-size: 1.8rem; font-weight: 900; color: var(--primary);
  letter-spacing: -0.03em;
}

.uptime-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.uptime-sep { width: 1px; height: 40px; background: var(--border); }

.infra-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.infra-block.reversed { direction: rtl; }
.infra-block.reversed > * { direction: ltr; }

.infra-block-text { display: flex; flex-direction: column; gap: 16px; }

.infra-block-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--text);
}

.infra-block-text p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.75; }

.infra-block-text strong { color: var(--primary); font-weight: 600; }

.server-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.server-rack { display: flex; flex-direction: column; gap: 6px; }

.server-unit {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-4); border-radius: 6px; padding: 10px 14px;
  border: 1px solid var(--border);
}

.unit-led { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.status-0 .unit-led, .status-1 .unit-led { background: #00d084; box-shadow: 0 0 6px #00d084; }
.status-2 .unit-led { background: var(--primary); box-shadow: 0 0 6px var(--primary); }

.unit-bars { display: flex; gap: 4px; }

.unit-bars span {
  display: block; width: 28px; height: 6px;
  border-radius: 3px; background: var(--border);
}

.server-stats { display: flex; flex-direction: column; gap: 8px; }

.srv-stat { display: flex; align-items: center; gap: 10px; }

.srv-label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); width: 30px; }

.srv-bar { flex: 1; height: 4px; background: var(--bg-4); border-radius: 2px; overflow: hidden; }

.srv-fill { height: 100%; background: var(--primary); border-radius: 2px; transition: width 1s ease; }

.net-fill { background: #229ED9; }

.srv-val { font-size: 0.7rem; color: var(--text-muted); width: 32px; text-align: right; }

.network-visual {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; align-items: center; justify-content: center;
  min-height: 260px;
}

.network-map { position: relative; width: 240px; height: 240px; }

.network-node {
  position: absolute;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-4); border: 2px solid var(--primary-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--primary);
  transition: border-color 0.2s;
}

.main-node {
  width: 64px; height: 64px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--primary-glow); border-color: var(--primary);
  font-size: 0.7rem;
  box-shadow: 0 0 20px rgba(224,139,2,0.2);
}

.node-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 22%; right: 0; }
.node-3 { bottom: 22%; right: 0; }
.node-4 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.node-5 { top: 22%; left: 0; }
.node-6 { bottom: 22%; left: 0; }

.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.quality-card {
  padding: 28px 20px; display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}

.quality-highlight {
  border-color: var(--primary);
  background: linear-gradient(145deg, #0d0d0d, #111008);
  box-shadow: var(--shadow-glow);
}

.quality-badge { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.02em; }

.quality-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); }

.quality-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

.quality-detail {
  font-size: 0.75rem; color: var(--text-muted);
  background: var(--bg-4); padding: 4px 10px;
  border-radius: 4px; border: 1px solid var(--border);
}

.compat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin-bottom: 40px;
}

.compat-card {
  padding: 20px 12px; display: flex; flex-direction: column;
  align-items: center; gap: 8px; text-align: center;
}

.compat-card:hover { border-color: var(--primary-border); }

.compat-icon { color: var(--amber); display: flex; }

.compat-name { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }

.apps-section { text-align: center; }

.apps-title {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}

.apps-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

.app-badge {
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
  background: var(--bg-4); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 6px;
}

.support-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

.support-text { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

.support-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); }

.support-text p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.75; }

.support-features { display: flex; flex-direction: column; gap: 16px; }

.support-feat { display: flex; gap: 12px; align-items: flex-start; }

.feat-icon { color: var(--amber); flex-shrink: 0; display: flex; margin-top: 2px; }

.support-feat div { display: flex; flex-direction: column; gap: 2px; }

.support-feat strong { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.support-feat span { font-size: 0.8rem; color: var(--text-muted); }

.support-levels-title {
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: 16px;
}

.support-table {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}

.st-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.st-row:last-child { border-bottom: none; }

.st-header {
  background: var(--bg-4);
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase;
}

.st-plan { color: var(--text); font-weight: 500; }
.st-type, .st-time { color: var(--text-muted); }
.st-time.fast { color: #00d084; font-weight: 600; }

@media (max-width: 900px) {
  .infra-block, .infra-block.reversed { grid-template-columns: 1fr; direction: ltr; }
  .infra-block.reversed > * { direction: ltr; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .compat-grid { grid-template-columns: repeat(4, 1fr); }
  .support-block { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .uptime-sep { display: none; }
  .quality-grid { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 400px) { .compat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   RODAPÉ
   ================================================================ */
.footer { background: var(--white); border-top: 1px solid var(--b-xs); }

.foot-top { padding: 72px 0 56px; }

.foot-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  text-decoration: none;
}

.fl-icon { color: var(--amber); display: flex; align-items: center; }

.fl-text { display: flex; flex-direction: column; line-height: 1; gap: 1px; }

.fl-sup {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.fl-name {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.foot-desc {
  font-size: 0.84rem;
  color: var(--ink-4);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}

.foot-cta { font-size: 0.82rem; padding: 10px 18px; }

.foot-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 16px;
}

.foot-col ul { display: flex; flex-direction: column; gap: 9px; }

.foot-col a {
  font-size: 0.84rem;
  color: var(--ink-3);
  transition: color 0.15s;
  letter-spacing: -0.01em;
}

.foot-col a:hover { color: var(--amber); }

.foot-bottom { border-top: 1px solid var(--b-xs); padding: 20px 0; }

.fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fb-copy, .fb-note { font-size: 0.76rem; color: var(--ink-5); letter-spacing: -0.01em; }

@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-brand { grid-column: auto; }
  .fb-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ================================================================
   BOTÃO FLUTUANTE DO TELEGRAM
   ================================================================ */
.fab-telegram {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #229ED9;
  color: #fff;
  border-radius: 100px;
  padding: 12px 20px 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  text-decoration: none;
}

.fab-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.55);
}

.fab-telegram:active { transform: translateY(0); }

@media (max-width: 480px) {
  .fab-telegram { bottom: 20px; right: 16px; padding: 13px; border-radius: 50%; }
  .fab-label { display: none; }
}

/* ── Preferência de movimento reduzido ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
