/* ============================================================
   GTRONX — DESIGN SYSTEM
   Cores derivam de --cor-primaria definida pelo painel (header.php).
   Fontes carregadas via Google Fonts no header.
   ============================================================ */
:root {
  --bg: #0a0612;
  --bg-2: #120820;
  --bg-3: #1a0d2e;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Magenta = cor primária do painel. Roxo derivado por mix com lilás escuro. */
  --magenta: var(--cor-primaria, #ec1e95);
  --magenta-2: color-mix(in srgb, var(--cor-primaria, #ec1e95) 88%, #ffffff);
  --purple: color-mix(in srgb, var(--cor-primaria, #ec1e95) 50%, #6b22c9);
  --purple-2: color-mix(in srgb, var(--cor-primaria, #ec1e95) 30%, #4a1a8f);
  --gradient: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  --gradient-soft: linear-gradient(135deg,
    color-mix(in srgb, var(--purple) 18%, transparent),
    color-mix(in srgb, var(--magenta) 18%, transparent));
  --gradient-strong: linear-gradient(135deg, var(--purple) 0%, var(--magenta-2) 100%);

  --text: #f5f3fa;
  --text-2: #b6abc9;
  --text-3: #847a99;

  --light: #f6f4fb;
  --light-text: #1a0d2e;
  --light-text-2: #5b4f73;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-glow: 0 30px 80px -30px color-mix(in srgb, var(--magenta) 45%, transparent);
  --shadow-card: 0 14px 50px -20px rgba(0, 0, 0, 0.6);

  /* Manrope nos títulos (h1-h6), Plus Jakarta Sans no corpo */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --container: 1300px;
}

/* ============================================================
   PADRÃO ÚNICO DE GRID: 1300px em TODAS as seções do site.
   Cobre as classes do design system + a .container do Tailwind
   usada nas seções legadas, garantindo alinhamento total.
   ============================================================ */
.gtron-root .gtron-container,
.gtron-root .container {
  max-width: 1300px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 640px) {
  .gtron-root .gtron-container,
  .gtron-root .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Reset suave (não interfere com Tailwind preflight) */
.gtron-root *, .gtron-root *::before, .gtron-root *::after { box-sizing: border-box; }

body.gtron-body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.gtron-root h1, .gtron-root h2, .gtron-root h3,
.gtron-root h4, .gtron-root h5, .gtron-root h6 {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.12; color: var(--text);
  /* Distribui as palavras melhor entre as linhas (sem 1-2 palavras
     "órfãs" na última linha). Chrome 114+, Safari 17.5+, Firefox 121+ */
  text-wrap: balance;
}
.gtron-root h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); letter-spacing: -0.035em; line-height: 1.08; }
.gtron-root h2 { font-size: clamp(1.85rem, 3.4vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.15; }
.gtron-root h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
.gtron-root h4 { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }

.gtron-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

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

/* =================== Topbar =================== */
.gtron-topbar {
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  background: #0a0612;
}
.gtron-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px;
  gap: 20px;
  padding-top: 10px; padding-bottom: 10px;
  flex-wrap: wrap;
}
.gtron-topbar-left {
  display: flex; align-items: center;
  gap: 28px; flex-wrap: wrap;
}
.gtron-topbar-right {
  display: flex; align-items: center; gap: 14px;
}

/* Item de topbar: ícone circular gradiente + bloco de texto em 2 linhas */
.gtron-topbar-item {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  transition: transform .25s ease, opacity .2s ease;
  color: var(--text);
}
.gtron-topbar-item:hover { transform: translateY(-1px); }
/* Apenas o ícone, sem BG — o gradiente é aplicado direto no stroke
   do SVG via stroke="url(#gtron-icon-gradient)" no markup. */
.gtron-topbar-ico {
  display: grid; place-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--magenta) 25%, transparent));
}
.gtron-topbar-ico svg {
  width: 28px; height: 28px;
  display: block;
}
.gtron-topbar-text {
  display: flex; flex-direction: column;
  line-height: 1.25;
  font-size: 14px;
  color: var(--text-2);
  white-space: nowrap;
}
.gtron-topbar-text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.gtron-topbar-text small {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 400;
}

/* Pill "2ª via de boleto" */
.gtron-topbar .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid color-mix(in srgb, var(--magenta) 40%, transparent);
  border-radius: 999px;
  font-weight: 600; color: var(--magenta-2);
  background: color-mix(in srgb, var(--magenta) 8%, transparent);
  text-decoration: none;
  transition: all .2s ease;
}
.gtron-topbar .pill:hover {
  background: var(--gradient-strong);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--magenta) 50%, transparent);
}

/* =================== Header =================== */
.gtron-header {
  position: sticky; top: 0; z-index: 50;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.gtron-header.scrolled {
  background: rgba(10, 6, 18, 0.55);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, 0.6);
}
.gtron-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px; gap: 24px;
}
.gtron-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 24px; letter-spacing: -0.04em;
  color: var(--text);
}
.gtron-logo img { height: 36px; width: auto; }
.gtron-logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--gradient-strong);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--magenta) 60%, transparent);
}
.gtron-logo-mark svg { width: 18px; height: 18px; color: white; }
.gtron-logo .x { color: var(--magenta-2); }

.gtron-nav { display: flex; align-items: center; gap: 8px; }
.gtron-nav a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  color: var(--text-2);
  transition: all 0.2s;
  text-decoration: none;
}
.gtron-nav a:hover, .gtron-nav a.active { color: var(--text); background: var(--surface-2); }
.gtron-nav .dropdown { position: relative; }
.gtron-nav .dropdown > a::after {
  content: '';
  display: inline-block; margin-left: 6px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle; opacity: 0.6;
}
.gtron-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: rgba(20, 12, 32, 0.95);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  box-shadow: var(--shadow-card);
}
.gtron-nav .dropdown:hover .dropdown-menu,
.gtron-nav .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.gtron-nav .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px; color: var(--text-2);
}
.gtron-nav .dropdown-menu a:hover { background: var(--surface-2); color: var(--text); }

.gtron-header-actions { display: flex; align-items: center; gap: 18px; }
/* Divisor vertical entre nav e ações */
.gtron-header-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
  display: inline-block;
}
.gtron-client-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}
.gtron-client-link svg { color: var(--magenta-2); }
.gtron-client-link:hover { color: var(--magenta-2); }

/* ============================================================
   BOTÃO "ASSINE" — maior, com gradiente que pulsa de um lado pro
   outro de forma contínua. Pareado com glow externo animado.
   ============================================================ */
.gtron-btn-assine {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    var(--purple) 0%,
    var(--magenta) 25%,
    var(--magenta-2) 50%,
    var(--magenta) 75%,
    var(--purple) 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 12px 30px -10px color-mix(in srgb, var(--magenta) 70%, transparent),
    0 4px 14px -4px color-mix(in srgb, var(--purple) 55%, transparent);
  animation: gtron-assine-shift 3.2s ease-in-out infinite;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gtron-btn-assine::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--purple) 0%,
    var(--magenta) 50%,
    var(--purple) 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  filter: blur(16px);
  opacity: .55;
  z-index: -1;
  animation: gtron-assine-shift 3.2s ease-in-out infinite;
}
.gtron-btn-assine:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px -10px color-mix(in srgb, var(--magenta) 80%, transparent),
    0 6px 20px -4px color-mix(in srgb, var(--purple) 70%, transparent);
}
.gtron-btn-assine svg { transition: transform .2s ease; }
.gtron-btn-assine:hover svg { transform: translateX(2px) scale(1.1); }

@keyframes gtron-assine-shift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@media (prefers-reduced-motion: reduce) {
  .gtron-btn-assine,
  .gtron-btn-assine::before { animation: none; }
}

/* =================== Buttons =================== */
.gtron-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em; cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  border: 0;
  font-family: var(--font-body);
}
.gtron-btn-primary {
  background: var(--gradient-strong);
  color: white;
  box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--magenta) 55%, transparent);
}
.gtron-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px color-mix(in srgb, var(--magenta) 70%, transparent);
}
.gtron-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.gtron-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--magenta);
  color: var(--magenta-2);
}
.gtron-btn-outline {
  background: transparent; color: var(--magenta-2);
  border: 1px solid var(--magenta);
}
.gtron-btn-outline:hover { background: var(--magenta); color: white; }
.gtron-btn-lg { padding: 16px 32px; font-size: 16px; }
.gtron-btn-sm { padding: 10px 18px; font-size: 13px; }

/* =================== HERO (slides + vídeo) — FULL =================== */
.gtron-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
/* IMPORTANTE: o wrapper de cada slide é flex-item da .gtron-hero (que é
   flex). Sem `width: 100%; flex: 1 0 100%`, o slide encolheria pra caber
   no flex, derrubando o centramento da .gtron-container interna. */
.gtron-hero__slide {
  position: relative;
  width: 100%;
  flex: 1 0 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
/* Quando a hero é renderizada como primeira seção e o header é fixed,
   o conteúdo precisa de padding pra clarear o header */
.gtron-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}
@media (min-width: 768px) {
  .gtron-hero__content { padding: 140px 0 100px; }
}

/* Background da hero — cobre toda a seção */
.gtron-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.gtron-hero__bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.gtron-hero__bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  user-select: none;
}
/* Overlay sobre o bg para legibilidade do texto */
.gtron-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(10, 6, 18, .90) 0%,
      rgba(10, 6, 18, .70) 30%,
      rgba(10, 6, 18, .30) 65%,
      rgba(10, 6, 18, 0) 100%),
    radial-gradient(ellipse at 80% 100%,
      color-mix(in srgb, var(--purple) 35%, transparent) 0%,
      transparent 60%);
}
@media (max-width: 768px) {
  .gtron-hero__overlay {
    background:
      linear-gradient(to bottom,
        rgba(10, 6, 18, .55) 0%,
        rgba(10, 6, 18, .40) 40%,
        rgba(10, 6, 18, .75) 100%),
      radial-gradient(ellipse at 50% 100%,
        color-mix(in srgb, var(--purple) 30%, transparent) 0%,
        transparent 60%);
  }
}

/* Bloqueio de eventos do iframe pra esconder controles do YouTube */
.gtron-hero__shield {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: auto;
  background: transparent;
}
.gtron-hero__logo-mask {
  position: absolute;
  right: 0; bottom: 0;
  width: 120px; height: 60px;
  background: rgba(10, 6, 18, .95);
  z-index: 2;
  pointer-events: none;
}

.gtron-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px; color: var(--text-2);
  background: var(--surface);
  margin-bottom: 20px;
}
.gtron-hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2dd47a;
  box-shadow: 0 0 0 4px rgba(45, 212, 122, 0.18);
}

/* ============================================================
   ESTRUTURA DO SLIDE EM 3 LINHAS:
   1) Eyebrow + Título
   2) Lead (descrição)
   3) CTAs + stats lado a lado
   Container 1300px (do .gtron-container), mas o texto fica numa
   coluna confortável (~720px) — espaço à direita pra respirar
   ou pra imagem de fundo aparecer livre.
   ============================================================ */
.gtron-hero__titulo {
  margin-bottom: 32px; /* fim da LINHA 1 (eyebrow+título) */
  max-width: 720px;
}
.gtron-hero__titulo-rotator {
  display: block;
  position: relative;
  min-height: 1em;
  margin-top: 0.05em;
}
.gtron-hero__palavra {
  display: inline-block;
  color: var(--magenta);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  text-shadow:
    0 0 30px color-mix(in srgb, var(--magenta) 50%, transparent),
    0 4px 16px rgba(0, 0, 0, .35);
}
.gtron-hero__palavra.is-active { opacity: 1; transform: translateY(0); }
.gtron-hero__palavra.is-leaving { opacity: 0; transform: translateY(-18px); }
.gtron-hero__palavra--ghost {
  position: relative;
  opacity: 0 !important; visibility: hidden;
  pointer-events: none; transform: none !important;
}
.gtron-hero__lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 40px; /* fim da LINHA 2 (descrição) */
}
.gtron-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px; /* dentro da LINHA 3 — junto com stats */
}
/* Stats abaixo dos botões — 3 colunas lado a lado, formato compacto
   igual o da referência. Limita pra não esticar tanto. */
.gtron-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 32px 40px;
  max-width: 580px;
}
.gtron-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  background: var(--gradient-strong);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.gtron-stat .label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .gtron-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .gtron-stat .num { font-size: 1.3rem; }
  .gtron-stat .label { font-size: 11px; }
}

/* Setas e dots dos slides (quando há mais de 1 slide imagem) */
.gtron-hero__arrows {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 3;
  display: flex; gap: 10px;
}
.gtron-hero__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .2s;
}
.gtron-hero__arrow:hover {
  background: var(--gradient-strong);
  border-color: transparent;
  transform: scale(1.06);
}
.gtron-hero__dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 10px;
}
.gtron-hero__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  border: 0; padding: 0;
  cursor: pointer;
  transition: all .3s;
}
.gtron-hero__dot.is-active {
  width: 28px;
  background: var(--magenta);
}

/* =================== Sections =================== */
.gtron-root section { position: relative; }
.gtron-section { padding: 100px 0; }
.gtron-section-light { background: var(--light); color: var(--light-text); }
.gtron-section-light h1, .gtron-section-light h2, .gtron-section-light h3 { color: var(--light-text); }
.gtron-section-light p { color: var(--light-text-2); }
.gtron-section-light .eyebrow { color: var(--purple-2); }

.gtron-section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.gtron-section-head h2 { max-width: 700px; margin-left: auto; margin-right: auto; }
.gtron-section-head p  { max-width: 640px; margin-left: auto; margin-right: auto; }
.gtron-section-head.left { text-align: left; margin-left: 0; }
.gtron-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta-2);
  margin-bottom: 14px;
}
.gtron-section-head h2 { margin-bottom: 14px; }
.gtron-section-head p { color: var(--text-2); font-size: 17px; }

/* =================== Plans =================== */
.gtron-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gtron-plan-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.gtron-plan-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--magenta) 40%, transparent);
  box-shadow: var(--shadow-glow);
}
.gtron-plan-card.featured {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--purple) 15%, transparent),
    color-mix(in srgb, var(--magenta) 6%, transparent));
  border-color: color-mix(in srgb, var(--magenta) 40%, transparent);
}
.gtron-plan-card.featured::after {
  content: 'Mais escolhido';
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient-strong);
  color: white;
  padding: 5px 10px;
  border-radius: 999px;
}
.gtron-plan-icons { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.gtron-plan-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(155, 61, 245, 0.18);
  border: 1px solid rgba(155, 61, 245, 0.3);
  display: grid; place-items: center;
  overflow: hidden;
}
.gtron-plan-icon svg { width: 18px; height: 18px; color: var(--magenta-2); }
.gtron-plan-icon img { width: 26px; height: 26px; object-fit: contain; }
.gtron-plan-tagline {
  font-size: 13px; color: var(--text-3);
  margin-bottom: 8px; min-height: 32px;
  line-height: 1.4;
}
.gtron-plan-speed { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.gtron-plan-speed .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  background: var(--gradient-strong);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.gtron-plan-speed .unit { font-size: 18px; color: var(--text-2); }
.gtron-plan-subtitle {
  font-size: 13px; color: var(--text-3);
  margin-bottom: 24px; line-height: 1.5;
}
.gtron-plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 28px; flex: 1;
  padding: 0;
}
.gtron-plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2);
}
.gtron-plan-features svg {
  width: 16px; height: 16px;
  color: var(--magenta-2);
  flex-shrink: 0; margin-top: 3px;
}
.gtron-plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 24px;
}
.gtron-plan-price .currency { font-size: 16px; color: var(--text-2); }
.gtron-plan-price .value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
}
.gtron-plan-price .cents { font-size: 18px; color: var(--text-2); }
.gtron-plan-price .per { font-size: 14px; color: var(--text-3); margin-left: 4px; }
.gtron-plan-card .gtron-btn { width: 100%; }

/* Apps inclusos abaixo dos benefícios */
.gtron-plan-apps {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.gtron-plan-apps-title {
  margin: 0; font-size: 11px;
  text-transform: uppercase; letter-spacing: .1em;
  font-weight: 700; color: var(--text-3);
  display: inline-flex; align-items: center; gap: 6px;
}
.gtron-plan-apps-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.gtron-plan-app {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}
.gtron-plan-app img { max-width: 100%; max-height: 100%; object-fit: contain; }

.gtron-plans-note {
  margin-top: 38px;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}

/* =================== Feature cards =================== */
.gtron-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gtron-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.gtron-feature-card:hover {
  border-color: color-mix(in srgb, var(--magenta) 35%, transparent);
  transform: translateY(-4px);
}
.gtron-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.gtron-feature-icon svg { width: 22px; height: 22px; color: var(--magenta-2); }
.gtron-feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.gtron-feature-card p { font-size: 14px; color: var(--text-2); }

/* =================== Testimonials =================== */
.gtron-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gtron-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; flex-direction: column;
}
.gtron-testimonial .stars { display: flex; gap: 3px; margin-bottom: 18px; }
.gtron-testimonial .stars svg { width: 16px; height: 16px; color: #ffc63a; }
.gtron-testimonial blockquote {
  font-size: 15px; color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px; flex: 1;
}
.gtron-testimonial-author { display: flex; align-items: center; gap: 12px; }
.gtron-t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-soft);
  display: grid; place-items: center;
  font-weight: 600; font-family: var(--font-display);
  color: var(--magenta-2);
  border: 1px solid var(--border-strong);
}
.gtron-t-name { font-size: 14px; font-weight: 600; }
.gtron-t-meta { font-size: 12px; color: var(--text-3); }

/* =================== FAQ =================== */
.gtron-faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.gtron-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.gtron-faq-item:hover { border-color: var(--border-strong); }
.gtron-faq-item[open] {
  border-color: color-mix(in srgb, var(--magenta) 35%, transparent);
  background: color-mix(in srgb, var(--magenta) 4%, transparent);
}
.gtron-faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 17px;
  color: var(--text);
}
.gtron-faq-item summary::-webkit-details-marker { display: none; }
.gtron-faq-item summary::after {
  content: '+';
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-size: 18px; flex-shrink: 0;
  transition: transform 0.25s, background 0.25s;
  font-family: var(--font-body); font-weight: 400;
  color: var(--text);
}
.gtron-faq-item[open] summary::after {
  content: '−';
  background: var(--gradient-strong);
  border-color: transparent; color: white;
}
.gtron-faq-item .gtron-faq-body {
  padding: 0 26px 24px;
  color: var(--text-2); font-size: 15px; line-height: 1.7;
}

/* =================== CTA strip =================== */
.gtron-cta-strip {
  position: relative;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 60px;
  background: var(--gradient-strong);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px; align-items: center;
  overflow: hidden;
}
.gtron-cta-strip::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  pointer-events: none;
}
.gtron-cta-strip h2 {
  color: white;
  max-width: 600px;
  text-wrap: balance;
}
.gtron-cta-strip p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px; margin-top: 12px;
  max-width: 560px;
}
.gtron-cta-strip-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
  position: relative; z-index: 1;
}
.gtron-cta-strip .gtron-btn-primary {
  background: white; color: var(--magenta); box-shadow: none;
}
.gtron-cta-strip .gtron-btn-primary:hover { background: rgba(255, 255, 255, 0.92); }
.gtron-cta-strip .gtron-btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
.gtron-cta-strip .gtron-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white; color: white;
}

/* =================== Footer =================== */
.gtron-footer-contact {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  background: var(--bg-2);
}
.gtron-footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.gtron-fc-item { display: flex; align-items: center; gap: 14px; }
.gtron-fc-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.gtron-fc-ico svg { width: 20px; height: 20px; color: white; }
.gtron-fc-label { font-size: 13px; color: var(--text-3); }
.gtron-fc-value { font-size: 15px; font-weight: 500; color: var(--text); }

.gtron-footer {
  padding: 60px 0 0; /* sem espaço inferior — barra de CNPJ cola na borda */
  background: var(--bg);
}
.gtron-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px; margin-bottom: 50px;
}
.gtron-footer-grid h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  margin-bottom: 18px; font-weight: 500;
}
.gtron-footer-grid ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.gtron-footer-grid li a {
  color: var(--text-2); font-size: 14px;
  transition: color 0.2s; text-decoration: none;
}
.gtron-footer-grid li a:hover { color: var(--magenta-2); }
.gtron-footer-about p {
  font-size: 14px; color: var(--text-2);
  margin: 14px 0 22px; max-width: 320px;
}
.gtron-socials { display: flex; gap: 10px; }
.gtron-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.gtron-socials a:hover { background: var(--gradient-strong); border-color: transparent; }
.gtron-socials svg { width: 16px; height: 16px; color: var(--text-2); }
.gtron-socials a:hover svg { color: white; }

.gtron-footer-meta {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 4px; /* respiro antes da barra do CNPJ */
  border-top: 1px solid var(--border);
  color: var(--text-3); font-size: 13px;
}
.gtron-footer-meta .secure {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(45, 212, 122, 0.12);
  border: 1px solid rgba(45, 212, 122, 0.35);
  color: #6cf0a8; font-weight: 500;
}
.gtron-footer-meta .secure svg { width: 14px; height: 14px; }
.gtron-footer-meta .spacer { flex: 1; }
.gtron-footer-meta a { color: var(--text-3); text-decoration: none; }
.gtron-footer-meta a:hover { color: var(--magenta-2); }

/* ============================================================
   Logo "Simples de Criar" no rodapé
   - Texto pintado em cinza-claro (combina com o dark mode)
   - Marca/seta com gradiente roxo (já no SVG)
   - Tooltip ao passar o mouse
   ============================================================ */
.gtron-sdc-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  opacity: .7;
  transition: opacity .25s ease, transform .25s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.gtron-sdc-logo:hover { opacity: 1; transform: translateY(-1px); }
.gtron-sdc-logo svg {
  width: 130px;
  height: auto;
  display: block;
}
/* Texto "Simples de Criar" do SVG vira branco/cinza claro do tema */
.gtron-sdc-logo .sdc-text path { fill: var(--text-2); transition: fill .25s ease; }
.gtron-sdc-logo:hover .sdc-text path { fill: var(--text); }
/* Tooltip */
.gtron-sdc-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(20, 12, 32, .95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 11px; font-weight: 600;
  padding: 7px 11px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
.gtron-sdc-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(20, 12, 32, .95);
}
.gtron-sdc-tooltip span { color: var(--magenta-2); }
.gtron-sdc-logo:hover .gtron-sdc-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.gtron-copyright {
  margin-top: 40px; /* afasta visualmente da seção acima */
  background: var(--gradient-strong);
  color: white;
  padding: 18px 0;
  text-align: center; font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ============================================================
   DRAWER MOBILE — menu lateral que abre quando o usuário toca
   no hamburger. Contém menu, atalhos pra Central + WhatsApp e
   CTA "Assine". Por padrão fica oculto fora da tela.
   ============================================================ */
.gtron-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .65);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  z-index: 60;
  transition: opacity .3s ease, visibility .3s ease;
}
.gtron-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.gtron-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 360px; max-width: 88vw;
  height: 100vh; height: 100dvh;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-left: 1px solid var(--border-strong);
  z-index: 70;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22, .8, .25, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -10px rgba(0, 0, 0, .55);
}
.gtron-drawer.is-open { transform: translateX(0); }

.gtron-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.gtron-drawer__head .gtron-logo { font-size: 20px; }
.gtron-drawer__head .gtron-logo img { height: 30px; }

.gtron-drawer__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--text);
  transition: all .25s ease;
}
.gtron-drawer__close:hover {
  background: var(--gradient-strong);
  border-color: transparent;
  transform: rotate(90deg);
}
.gtron-drawer__close svg { width: 18px; height: 18px; }

.gtron-drawer__nav {
  flex: 1; overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column;
  gap: 2px;
}
.gtron-drawer__nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text-2);
  font-weight: 500; font-size: 15px;
  text-decoration: none;
  transition: all .2s ease;
}
.gtron-drawer__nav a:hover, .gtron-drawer__nav a.active {
  background: var(--surface);
  color: var(--text);
}
.gtron-drawer__nav a svg {
  width: 18px; height: 18px;
  color: var(--magenta-2);
  flex-shrink: 0;
}

.gtron-drawer__actions {
  padding: 16px 20px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.gtron-drawer__action {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all .25s ease;
}
.gtron-drawer__action:hover {
  border-color: color-mix(in srgb, var(--magenta) 50%, transparent);
  background: var(--surface-2);
  transform: translateY(-1px);
}
.gtron-drawer__action-ico {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--gradient-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.gtron-drawer__action-ico svg { width: 18px; height: 18px; color: white; }
.gtron-drawer__action-text {
  display: flex; flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.gtron-drawer__action-text small {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gtron-drawer__action-text strong {
  font-weight: 600; font-size: 14px;
  color: var(--text);
  word-break: break-word;
}

.gtron-drawer__cta {
  padding: 16px 20px 20px;
  flex-shrink: 0;
}
.gtron-drawer__cta .gtron-btn { width: 100%; padding: 16px; font-size: 16px; }

.gtron-drawer__footer {
  padding: 14px 20px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  text-align: center;
}
.gtron-drawer__footer p {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.5;
}

/* Bloqueia o scroll do body quando o drawer está aberto */
body.gtron-drawer-open { overflow: hidden; }

/* =================== Responsive =================== */
.gtron-menu-toggle { display: none; }

@media (max-width: 1100px) {
  .gtron-plans-grid { grid-template-columns: repeat(2, 1fr); }
  .gtron-features-grid { grid-template-columns: repeat(2, 1fr); }
  .gtron-footer-grid { grid-template-columns: 1fr 1fr; }
  .gtron-footer-contact-grid { grid-template-columns: 1fr 1fr; }
  .gtron-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .gtron-topbar { display: none; }
  .gtron-nav { display: none; }
  .gtron-header-inner { height: 76px; }
  /* No mobile, o drawer cobre tudo — esconde duplicidade no header */
  .gtron-header-divider,
  .gtron-client-link,
  .gtron-btn-assine { display: none; }
  .gtron-hero__stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gtron-cta-strip { grid-template-columns: 1fr; padding: 36px 28px; }
  .gtron-cta-strip-actions { justify-content: flex-start; }
  .gtron-features-grid, .gtron-plans-grid { grid-template-columns: 1fr; }
  .gtron-footer-grid, .gtron-footer-contact-grid { grid-template-columns: 1fr; }
  .gtron-section { padding: 70px 0; }
  .gtron-hero__content { padding: 100px 0 60px; }
  .gtron-hero__arrows { bottom: 20px; right: 20px; }
  .gtron-hero__dots { bottom: 20px; }
  .gtron-menu-toggle {
    display: inline-flex;
    width: 42px; height: 42px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    align-items: center; justify-content: center;
    cursor: pointer; color: var(--text);
  }
  .gtron-menu-toggle svg { width: 20px; height: 20px; }
  .gtron-client-link { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gtron-hero__palavra { transition: opacity .2s ease; transform: none !important; }
  .gtron-plan-card, .gtron-feature-card, .gtron-btn { transition: none !important; }
}
