/* =====================================================
   CT APP CENTER — DESIGN SYSTEM
   Ficheiro: assets/css/ct-design-system.css
   Tema: ct-child-theme (Hello Elementor Child)
   Versão: 2.1.0 | CheckTrusted
   Fonte: Manrope (títulos) + Inter (corpo)

   ÍNDICE:
   1.  Variáveis CSS (Design Tokens)
   2.  Reset & Base
   3.  Tipografia
   4.  Layout & Containers
   5.  Navegação
   6.  Botões
   7.  App Cards
   8.  Status Pills & Badges
   9.  Hero Section
   10. Scan Bar
   11. Stats Bar
   12. Quick Tools
   13. Trust Center
   14. Pricing Cards
   15. Footer
   16. Animações
   17. Elementor Overrides
   18. WordPress Link Override
   19. Utilitários
   20. Responsive
===================================================== */


/* ─────────────────────────────────────────────────────
   1. VARIÁVEIS CSS — Design Tokens
   ───────────────────────────────────────────────────── */

:root {

  /* ── Brand ── */
  --ct-primary:           #1c64f2;
  --ct-primary-hover:     #1a56db;
  --ct-primary-light:     #3b82f6;
  --ct-primary-glow:      rgba(28, 100, 242, 0.22);
  --ct-primary-sub:       rgba(28, 100, 242, 0.07);
  --ct-primary-border:    rgba(28, 100, 242, 0.18);

  /* ── Backgrounds ── */
  --ct-bg:                #0d1117;
  --ct-bg2:               #0f1623;
  --ct-bg3:               #111c2a;
  --ct-surface-1:         #141c24;
  --ct-surface-2:         #1a2535;
  --ct-surface-3:         #1f2d40;

  /* ── Borders ── */
  --ct-border-1:          rgba(255, 255, 255, 0.055);
  --ct-border-2:          rgba(255, 255, 255, 0.09);
  --ct-border-3:          rgba(255, 255, 255, 0.16);

  /* ── Text ── */
  --ct-text-100:          #f0f6fc;
  --ct-text-200:          #e2e8f0;
  --ct-text-300:          #94a3b8;
  --ct-text-400:          #64748b;

  /* ── Status: Verde ── */
  --ct-green:             #22c55e;
  --ct-green-bg:          rgba(34, 197, 94, 0.09);
  --ct-green-border:      rgba(34, 197, 94, 0.20);
  --ct-green-glow:        rgba(34, 197, 94, 0.28);

  /* ── Status: Vermelho ── */
  --ct-red:               #ef4444;
  --ct-red-bg:            rgba(239, 68, 68, 0.09);
  --ct-red-border:        rgba(239, 68, 68, 0.20);

  /* ── Status: Âmbar ── */
  --ct-amber:             #f59e0b;
  --ct-amber-bg:          rgba(245, 158, 11, 0.09);
  --ct-amber-border:      rgba(245, 158, 11, 0.20);

  /* ── Status: Cyan ── */
  --ct-cyan:              #06b6d4;
  --ct-cyan-bg:           rgba(6, 182, 212, 0.09);
  --ct-cyan-border:       rgba(6, 182, 212, 0.20);

  /* ── Status: Violet ── */
  --ct-violet:            #a78bfa;
  --ct-violet-bg:         rgba(167, 139, 250, 0.09);
  --ct-violet-border:     rgba(167, 139, 250, 0.20);

  /* ── App Accent Colors ── */
  --ct-scan:              #3b82f6;
  --ct-guard:             #22c55e;
  --ct-verify:            #a78bfa;
  --ct-vault:             #f59e0b;
  --ct-alert:             #ef4444;
  --ct-extension:         #06b6d4;

  /* ── Tipografia ── */
  --ct-font-display:      'Manrope', sans-serif;
  --ct-font-body:         'Inter', sans-serif;
  --ct-font-mono:         'Courier New', 'Lucida Console', monospace;

  /* ── Border Radius ── */
  --ct-r-xs:              4px;
  --ct-r-sm:              6px;
  --ct-r-md:              10px;
  --ct-r-lg:              14px;
  --ct-r-xl:              20px;
  --ct-r-2xl:             28px;
  --ct-r-full:            9999px;

  /* ── Sombras ── */
  --ct-shadow-sm:         0 2px 8px rgba(0, 0, 0, 0.30);
  --ct-shadow-md:         0 8px 24px rgba(0, 0, 0, 0.40);
  --ct-shadow-lg:         0 20px 50px rgba(0, 0, 0, 0.50);
  --ct-shadow-primary:    0 0 24px var(--ct-primary-glow);
  --ct-shadow-green:      0 0 24px var(--ct-green-glow);

  /* ── Transições ── */
  --ct-transition:        all 0.20s ease;
  --ct-transition-fast:   all 0.15s ease;
  --ct-transition-slow:   all 0.35s ease;

  /* ── Espaçamento ── */
  --ct-space-xs:          4px;
  --ct-space-sm:          8px;
  --ct-space-md:          16px;
  --ct-space-lg:          24px;
  --ct-space-xl:          40px;
  --ct-space-2xl:         64px;
  --ct-space-3xl:         96px;

  /* ── Containers ── */
  --ct-container:         1200px;
  --ct-container-sm:      800px;

  /* ── Nav ── */
  --ct-nav-height:        66px;
}

/* Propagar variáveis ao contexto do Elementor */
body,
.elementor,
.elementor-section,
.elementor-widget-html {
  --ct-primary:           #1c64f2;
  --ct-primary-hover:     #1a56db;
  --ct-primary-light:     #3b82f6;
  --ct-primary-glow:      rgba(28, 100, 242, 0.22);
  --ct-primary-sub:       rgba(28, 100, 242, 0.07);
  --ct-primary-border:    rgba(28, 100, 242, 0.18);
  --ct-bg:                #0d1117;
  --ct-bg2:               #0f1623;
  --ct-bg3:               #111c2a;
  --ct-surface-1:         #141c24;
  --ct-surface-2:         #1a2535;
  --ct-surface-3:         #1f2d40;
  --ct-border-1:          rgba(255, 255, 255, 0.055);
  --ct-border-2:          rgba(255, 255, 255, 0.09);
  --ct-border-3:          rgba(255, 255, 255, 0.16);
  --ct-text-100:          #f0f6fc;
  --ct-text-200:          #e2e8f0;
  --ct-text-300:          #94a3b8;
  --ct-text-400:          #64748b;
  --ct-green:             #22c55e;
  --ct-green-bg:          rgba(34, 197, 94, 0.09);
  --ct-green-border:      rgba(34, 197, 94, 0.20);
  --ct-green-glow:        rgba(34, 197, 94, 0.28);
  --ct-red:               #ef4444;
  --ct-red-bg:            rgba(239, 68, 68, 0.09);
  --ct-red-border:        rgba(239, 68, 68, 0.20);
  --ct-amber:             #f59e0b;
  --ct-amber-bg:          rgba(245, 158, 11, 0.09);
  --ct-amber-border:      rgba(245, 158, 11, 0.20);
  --ct-cyan:              #06b6d4;
  --ct-cyan-bg:           rgba(6, 182, 212, 0.09);
  --ct-cyan-border:       rgba(6, 182, 212, 0.20);
  --ct-violet:            #a78bfa;
  --ct-violet-bg:         rgba(167, 139, 250, 0.09);
  --ct-violet-border:     rgba(167, 139, 250, 0.20);
  --ct-font-display:      'Manrope', sans-serif;
  --ct-font-body:         'Inter', sans-serif;
  --ct-font-mono:         'Courier New', monospace;
  --ct-r-xs:              4px;
  --ct-r-sm:              6px;
  --ct-r-md:              10px;
  --ct-r-lg:              14px;
  --ct-r-xl:              20px;
  --ct-r-full:            9999px;
  --ct-transition:        all 0.20s ease;
  --ct-transition-fast:   all 0.15s ease;
  --ct-shadow-primary:    0 0 24px rgba(28, 100, 242, 0.22);
  --ct-shadow-green:      0 0 24px rgba(34, 197, 94, 0.28);
  --ct-nav-height:        66px;
}


/* ─────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────── */

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

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

body {
  background-color: var(--ct-bg) !important;
  color: var(--ct-text-200) !important;
  font-family: var(--ct-font-body) !important;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

code {
  font-family: var(--ct-font-mono);
  font-size: 0.875em;
  background: var(--ct-surface-2);
  border: 1px solid var(--ct-border-2);
  border-radius: var(--ct-r-sm);
  padding: 2px 7px;
  color: var(--ct-primary-light);
}

pre {
  font-family: var(--ct-font-mono);
  font-size: 13px;
  background: var(--ct-bg2);
  border: 1px solid var(--ct-border-2);
  border-radius: var(--ct-r-lg);
  padding: 20px 24px;
  overflow-x: auto;
  line-height: 1.65;
  color: var(--ct-primary-light);
}

pre code { background: none; border: none; padding: 0; font-size: inherit; }


/* ─────────────────────────────────────────────────────
   3. TIPOGRAFIA
   ───────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6,
.ct-h1, .ct-h2, .ct-h3, .ct-h4 {
  font-family: var(--ct-font-display) !important;
  color: var(--ct-text-100) !important;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1, .ct-h1 { font-size: clamp(38px, 6.5vw, 72px); letter-spacing: -0.04em; line-height: 1.06; }
h2, .ct-h2 { font-size: clamp(26px, 4vw, 44px); letter-spacing: -0.035em; }
h3, .ct-h3 { font-size: clamp(18px, 2.5vw, 24px); letter-spacing: -0.02em; font-weight: 700; }
h4, .ct-h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

p { color: var(--ct-text-300); line-height: 1.70; }
strong, b { font-weight: 700; color: var(--ct-text-200); }

.ct-text-gradient {
  background: linear-gradient(135deg, #1c64f2 0%, #60a5fa 50%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ct-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ct-primary-light);
  margin-bottom: 14px;
}

.ct-section-tag::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--ct-primary-light);
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────
   4. LAYOUT & CONTAINERS
   ───────────────────────────────────────────────────── */

.ct-container {
  width: 100%;
  max-width: var(--ct-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.ct-container-sm { max-width: var(--ct-container-sm); }

.ct-section {
  padding-top: var(--ct-space-3xl);
  padding-bottom: var(--ct-space-3xl);
}

.ct-section-alt {
  background: var(--ct-bg2);
  border-top: 1px solid var(--ct-border-1);
  border-bottom: 1px solid var(--ct-border-1);
}

.ct-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ct-border-2), transparent);
}

.ct-grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ct-grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ct-grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ct-grid-apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.ct-page-wrap { padding-top: var(--ct-nav-height); }


/* ─────────────────────────────────────────────────────
   5. NAVEGAÇÃO
   ───────────────────────────────────────────────────── */

.ct-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--ct-nav-height);
  background: rgba(13, 17, 23, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--ct-border-1);
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 32px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.ct-nav.scrolled {
  background: rgba(13, 17, 23, 0.97);
  border-bottom-color: var(--ct-border-2);
}

.ct-nav-logo {
  display: flex; align-items: center; gap: 11px;
  flex-shrink: 0; text-decoration: none;
}

.ct-nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--ct-primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: var(--ct-shadow-primary);
  flex-shrink: 0;
  transition: var(--ct-transition);
}

.ct-nav-logo-name {
  font-family: var(--ct-font-display);
  font-weight: 800; font-size: 16px;
  color: var(--ct-text-100) !important;
  letter-spacing: -0.3px; display: block;
}

.ct-nav-logo-sub {
  font-family: var(--ct-font-mono);
  font-size: 9px; color: var(--ct-text-400);
  letter-spacing: 0.5px; display: block; margin-top: 2px;
}

.ct-nav-links {
  display: flex; gap: 2px;
  list-style: none; margin: 0; padding: 0; flex: 1;
}

.ct-nav-links a {
  display: flex; align-items: center; gap: 5px;
  color: var(--ct-text-300);
  font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: 7px;
  transition: var(--ct-transition-fast);
  text-decoration: none;
}

.ct-nav-links a:hover,
.ct-nav-links .current-menu-item > a {
  color: var(--ct-text-100) !important;
  background: var(--ct-surface-1);
}

.ct-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }


/* ─────────────────────────────────────────────────────
   6. BOTÕES
   ───────────────────────────────────────────────────── */

.ct-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 7px; padding: 10px 22px;
  border-radius: var(--ct-r-md);
  font-family: var(--ct-font-body);
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: var(--ct-transition);
  line-height: 1; white-space: nowrap; text-decoration: none;
}

.ct-btn-primary { background: var(--ct-primary); color: #ffffff !important; box-shadow: var(--ct-shadow-primary); }
.ct-btn-primary:hover { background: var(--ct-primary-hover); box-shadow: 0 0 32px rgba(28,100,242,0.42); transform: translateY(-1px); color: #ffffff !important; }

.ct-btn-outline { background: transparent; color: var(--ct-text-200) !important; border: 1px solid var(--ct-border-2); }
.ct-btn-outline:hover { background: var(--ct-surface-1); border-color: var(--ct-border-3); color: var(--ct-text-100) !important; }

.ct-btn-ghost { background: transparent; color: var(--ct-text-300) !important; border: 1px solid var(--ct-border-2); }
.ct-btn-ghost:hover { color: var(--ct-text-100) !important; background: var(--ct-surface-1); border-color: var(--ct-border-3); }

.ct-btn-danger  { background: var(--ct-red-bg);   color: var(--ct-red) !important;   border: 1px solid var(--ct-red-border);   }
.ct-btn-success { background: var(--ct-green-bg); color: var(--ct-green) !important; border: 1px solid var(--ct-green-border); }

.ct-btn-sm   { padding: 6px 14px; font-size: 12px; border-radius: var(--ct-r-sm); }
.ct-btn-lg   { padding: 12px 28px; font-size: 15px; border-radius: var(--ct-r-lg); }
.ct-btn-xl   { padding: 14px 32px; font-size: 16px; border-radius: 11px; font-weight: 700; }
.ct-btn-full { width: 100%; }


/* ─────────────────────────────────────────────────────
   7. APP CARDS
   ───────────────────────────────────────────────────── */

.ct-app-card {
  background: var(--ct-surface-1);
  border: 1px solid var(--ct-border-1);
  border-radius: var(--ct-r-lg);
  padding: 26px;
  transition: var(--ct-transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
}

.ct-app-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--app-color, var(--ct-primary));
  opacity: 0.8;
}

.ct-app-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.025), transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}

.ct-app-card:hover {
  border-color: var(--ct-border-2);
  background: var(--ct-surface-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 0 1px var(--ct-border-2);
}

.ct-app-card:hover::after { opacity: 1; }

.ct-app-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }

.ct-app-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 23px; flex-shrink: 0; }

.ct-app-name { font-family: var(--ct-font-display); font-size: 18px; font-weight: 700; color: var(--ct-text-100); margin-bottom: 7px; letter-spacing: -0.03em; }

.ct-app-desc { font-size: 13.5px; color: var(--ct-text-300); line-height: 1.65; flex: 1; margin-bottom: 20px; }

.ct-app-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.ct-app-version { font-family: var(--ct-font-mono); font-size: 10px; color: var(--ct-text-400); letter-spacing: 0.3px; }

.ct-btn-app {
  font-size: 12px; font-weight: 700; padding: 6px 14px;
  border-radius: 7px; border: 1px solid transparent;
  cursor: pointer; font-family: var(--ct-font-body);
  transition: var(--ct-transition-fast); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
}

.ct-btn-app:hover { filter: brightness(1.2); transform: scale(1.03); }


/* ─────────────────────────────────────────────────────
   8. STATUS PILLS & BADGES
   ───────────────────────────────────────────────────── */

.ct-status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--ct-font-body); font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--ct-r-full); letter-spacing: 0.3px;
}

.ct-pill-active { background: var(--ct-green-bg);   color: var(--ct-green);  border: 1px solid var(--ct-green-border);  }
.ct-pill-beta   { background: var(--ct-amber-bg);   color: var(--ct-amber);  border: 1px solid var(--ct-amber-border);  }
.ct-pill-soon   { background: var(--ct-border-1);   color: var(--ct-text-400); border: 1px solid var(--ct-border-2); }
.ct-pill-saas   { background: var(--ct-cyan-bg);    color: var(--ct-cyan);   border: 1px solid var(--ct-cyan-border);   }
.ct-pill-api    { background: var(--ct-primary-sub);color: var(--ct-primary-light); border: 1px solid var(--ct-primary-border); }

.ct-status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.ct-pill-active .ct-status-dot { animation: ct-pulse-dot 2s infinite; }

@keyframes ct-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

.ct-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ct-green); display: inline-block;
  animation: ct-pulse-dot 2s infinite;
}

.ct-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--ct-r-full); font-size: 11px; font-weight: 600; font-family: var(--ct-font-mono); }

.ct-badge-safe   { background: var(--ct-green-bg);   color: var(--ct-green);        border: 1px solid var(--ct-green-border);   }
.ct-badge-danger { background: var(--ct-red-bg);      color: var(--ct-red);          border: 1px solid var(--ct-red-border);     }
.ct-badge-warn   { background: var(--ct-amber-bg);    color: var(--ct-amber);        border: 1px solid var(--ct-amber-border);   }
.ct-badge-info   { background: var(--ct-primary-sub); color: var(--ct-primary-light);border: 1px solid var(--ct-primary-border); }


/* ─────────────────────────────────────────────────────
   9. HERO SECTION
   ───────────────────────────────────────────────────── */

.ct-hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}

.ct-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ct-border-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--ct-border-1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

.ct-hero-glow {
  position: absolute; top: 5%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(28,100,242,0.10) 0%, rgba(28,100,242,0.03) 45%, transparent 70%);
  pointer-events: none;
}

.ct-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ct-green-bg); border: 1px solid var(--ct-green-border);
  color: var(--ct-green); font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: var(--ct-r-full);
  margin-bottom: 32px; letter-spacing: 0.5px; text-transform: uppercase;
  position: relative; z-index: 1;
}

.ct-hero h1 { position: relative; z-index: 1; max-width: 860px; margin: 0 auto 24px; }

.ct-hero-sub { font-size: 17px; color: var(--ct-text-300); max-width: 520px; margin: 0 auto 44px; line-height: 1.75; position: relative; z-index: 1; }

.ct-hero-ctas { display: flex; gap: 12px; justify-content: center; margin-bottom: 52px; position: relative; z-index: 1; flex-wrap: wrap; }


/* ─────────────────────────────────────────────────────
   10. SCAN BAR
   ───────────────────────────────────────────────────── */

.ct-scan-bar-wrap { width: 100%; max-width: 620px; position: relative; margin: 0 auto 56px; z-index: 1; }

.ct-scan-bar {
  display: flex; gap: 6px;
  background: var(--ct-surface-1);
  border: 1px solid var(--ct-border-2);
  border-radius: 13px; padding: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--ct-primary-border), 0 0 40px rgba(28,100,242,0.06);
}

.ct-scan-bar input { flex: 1; background: transparent; border: none; outline: none; color: var(--ct-text-100); font-family: var(--ct-font-mono); font-size: 13px; padding: 11px 18px; min-width: 0; }

.ct-scan-bar input::placeholder { color: var(--ct-text-400); }

.ct-scan-btn {
  background: var(--ct-primary); color: #fff; border: none;
  border-radius: 9px; padding: 11px 22px;
  font-family: var(--ct-font-body); font-size: 13px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: var(--ct-transition); white-space: nowrap;
  box-shadow: 0 0 20px var(--ct-primary-glow);
}

.ct-scan-btn:hover { background: var(--ct-primary-hover); box-shadow: 0 0 30px rgba(28,100,242,0.45); transform: scale(1.02); }

.ct-scan-result { position: absolute; left: 0; right: 0; bottom: -50px; display: none; padding: 10px 18px; border-radius: 9px; font-size: 13px; font-weight: 500; border: 1px solid transparent; z-index: 10; }


/* ─────────────────────────────────────────────────────
   11. STATS BAR
   ───────────────────────────────────────────────────── */

.ct-stats-bar { display: flex; background: var(--ct-surface-1); border: 1px solid var(--ct-border-1); border-radius: var(--ct-r-lg); overflow: hidden; width: 100%; max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }

.ct-stat-item { flex: 1; padding: 22px 24px; text-align: center; border-right: 1px solid var(--ct-border-1); }
.ct-stat-item:last-child { border-right: none; }

.ct-stat-num { font-family: var(--ct-font-display); font-size: 30px; font-weight: 800; color: var(--ct-text-100); letter-spacing: -1.5px; line-height: 1; margin-bottom: 5px; }

.ct-stat-label { font-size: 11.5px; color: var(--ct-text-400); font-weight: 500; }


/* ─────────────────────────────────────────────────────
   12. QUICK TOOLS
   ───────────────────────────────────────────────────── */

.ct-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.ct-tool-card {
  background: var(--ct-surface-1); border: 1px solid var(--ct-border-1);
  border-radius: var(--ct-r-lg); padding: 28px;
  transition: var(--ct-transition); position: relative; overflow: hidden;
}

.ct-tool-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at var(--ct-mx, 50%) var(--ct-my, 50%), rgba(28,100,242,0.07), transparent 65%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}

.ct-tool-card:hover { border-color: rgba(28,100,242,0.25); transform: translateY(-2px); }
.ct-tool-card:hover::before { opacity: 1; }

.ct-tool-emoji { font-size: 30px; line-height: 1; margin-bottom: 14px; display: block; }

.ct-tool-name { font-family: var(--ct-font-display); font-size: 17px; font-weight: 700; color: var(--ct-text-100); margin-bottom: 6px; letter-spacing: -0.02em; }

.ct-tool-desc { font-size: 13px; color: var(--ct-text-400); margin-bottom: 20px; line-height: 1.6; }

.ct-tool-input-row { display: flex; gap: 6px; }

.ct-tool-input { flex: 1; background: var(--ct-bg3); border: 1px solid var(--ct-border-2); border-radius: 8px; padding: 9px 13px; color: var(--ct-text-100); font-family: var(--ct-font-mono); font-size: 12px; outline: none; min-width: 0; transition: var(--ct-transition-fast); }

.ct-tool-input:focus { border-color: var(--ct-primary); box-shadow: 0 0 0 3px var(--ct-primary-sub); }
.ct-tool-input::placeholder { color: var(--ct-text-400); }

.ct-tool-go { background: var(--ct-surface-2); border: 1px solid var(--ct-border-2); color: var(--ct-primary-light); border-radius: 8px; padding: 9px 15px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: var(--ct-font-body); transition: var(--ct-transition-fast); white-space: nowrap; }

.ct-tool-go:hover { background: var(--ct-primary); color: #fff; border-color: var(--ct-primary); }

.ct-no-login-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--ct-text-400); padding: 4px 12px; background: var(--ct-border-1); border: 1px solid var(--ct-border-2); border-radius: var(--ct-r-full); margin-bottom: 20px; }


/* ─────────────────────────────────────────────────────
   13. TRUST CENTER
   ───────────────────────────────────────────────────── */

.ct-trust-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }

.ct-score-card { background: var(--ct-surface-1); border: 1px solid var(--ct-border-1); border-radius: var(--ct-r-lg); padding: 32px; }

.ct-score-ring-wrap { width: 148px; height: 148px; margin: 0 auto 22px; position: relative; }
.ct-score-ring-wrap svg { transform: rotate(-90deg); }

.ct-score-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.ct-score-num { font-family: var(--ct-font-display); font-size: 38px; font-weight: 800; color: var(--ct-green); letter-spacing: -2px; line-height: 1; }

.ct-score-of { font-family: var(--ct-font-mono); font-size: 10px; color: var(--ct-text-400); letter-spacing: 0.5px; }

.ct-trust-row { background: var(--ct-surface-1); border: 1px solid var(--ct-border-1); border-radius: 10px; padding: 13px 16px; display: flex; align-items: center; gap: 12px; transition: var(--ct-transition-fast); margin-bottom: 8px; }

.ct-trust-row:hover { border-color: var(--ct-border-2); background: var(--ct-surface-2); }

.ct-trust-indicator { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.ct-trust-domain { font-family: var(--ct-font-mono); font-size: 13px; color: var(--ct-text-200); flex: 1; }


/* ─────────────────────────────────────────────────────
   14. PRICING CARDS
   ───────────────────────────────────────────────────── */

.ct-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }

.ct-pricing-card { background: var(--ct-surface-1); border: 1px solid var(--ct-border-1); border-radius: var(--ct-r-xl); padding: 30px 26px; position: relative; display: flex; flex-direction: column; transition: var(--ct-transition); }

.ct-pricing-card:hover { transform: translateY(-2px); box-shadow: var(--ct-shadow-md); }

.ct-pricing-card.featured { border-color: var(--ct-primary); background: linear-gradient(160deg, rgba(28,100,242,0.08) 0%, var(--ct-surface-1) 60%); box-shadow: 0 0 44px rgba(28,100,242,0.12); }

.ct-pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--ct-primary); color: #fff; font-size: 9px; font-weight: 700; padding: 3px 14px; border-radius: var(--ct-r-full); letter-spacing: 0.8px; text-transform: uppercase; white-space: nowrap; box-shadow: var(--ct-shadow-primary); }

.ct-plan-name { font-family: var(--ct-font-display); font-size: 17px; font-weight: 800; color: var(--ct-text-100); margin-bottom: 4px; }

.ct-plan-price { font-family: var(--ct-font-display); font-size: 40px; font-weight: 800; color: var(--ct-text-100); letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.ct-plan-price sup { font-size: 18px; font-weight: 600; vertical-align: super; letter-spacing: 0; }
.ct-plan-price span { font-size: 14px; font-weight: 400; color: var(--ct-text-400); letter-spacing: 0; }

.ct-plan-desc { font-size: 12.5px; color: var(--ct-text-400); line-height: 1.6; margin-bottom: 18px; }

.ct-plan-divider { height: 1px; background: var(--ct-border-1); margin: 16px 0; }

.ct-plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 22px; }

.ct-plan-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--ct-text-300); line-height: 1.5; }

.ct-feat-yes { color: var(--ct-green);    flex-shrink: 0; margin-top: 1px; font-size: 12px; }
.ct-feat-no  { color: var(--ct-text-400); flex-shrink: 0; margin-top: 1px; font-size: 12px; }

.ct-plan-btn { width: 100%; padding: 11px; border-radius: var(--ct-r-md); font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: var(--ct-font-body); transition: var(--ct-transition); margin-top: auto; }

.ct-plan-btn:hover { transform: translateY(-1px); }


/* ─────────────────────────────────────────────────────
   15. FOOTER
   ───────────────────────────────────────────────────── */

.ct-footer { background: var(--ct-bg); border-top: 1px solid var(--ct-border-1); padding: 64px 48px 40px; }

.ct-footer-inner { max-width: var(--ct-container); margin: 0 auto; }

.ct-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }

.ct-footer-brand-name { font-family: var(--ct-font-display); font-size: 18px; font-weight: 800; color: var(--ct-text-100); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }

.ct-footer-brand-icon { width: 30px; height: 30px; background: var(--ct-primary); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: var(--ct-shadow-primary); }

.ct-footer-slogan { font-size: 11px; color: var(--ct-text-400); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }

.ct-footer-tagline { font-size: 13.5px; color: var(--ct-text-300); line-height: 1.7; max-width: 260px; }

.ct-footer-col-title { font-size: 11px; font-weight: 700; color: var(--ct-text-200); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }

.ct-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }

.ct-footer-links a { font-size: 13.5px; color: var(--ct-text-400); transition: var(--ct-transition-fast); display: flex; align-items: center; gap: 6px; }

.ct-footer-links a:hover { color: var(--ct-text-100); }

.ct-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--ct-border-1); gap: 20px; flex-wrap: wrap; }

.ct-footer-copy { font-size: 12.5px; color: var(--ct-text-400); }

.ct-footer-legal { display: flex; gap: 20px; list-style: none; }

.ct-footer-legal a { font-size: 12.5px; color: var(--ct-text-400); transition: var(--ct-transition-fast); }
.ct-footer-legal a:hover { color: var(--ct-text-200); }


/* ─────────────────────────────────────────────────────
   16. ANIMAÇÕES
   ───────────────────────────────────────────────────── */

@keyframes ct-fade-up   { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes ct-fade-down { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ct-fade-in   { from { opacity: 0; } to { opacity: 1; } }
@keyframes ct-glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--ct-primary-glow); }
  50%       { box-shadow: 0 0 40px rgba(28,100,242,0.5); }
}

.ct-animate-up   { animation: ct-fade-up   0.6s ease both; }
.ct-animate-down { animation: ct-fade-down 0.5s ease both; }
.ct-animate-in   { animation: ct-fade-in   0.5s ease both; }

.ct-delay-1 { animation-delay: 0.10s; }
.ct-delay-2 { animation-delay: 0.20s; }
.ct-delay-3 { animation-delay: 0.30s; }
.ct-delay-4 { animation-delay: 0.40s; }
.ct-delay-5 { animation-delay: 0.50s; }
.ct-delay-6 { animation-delay: 0.65s; }

.ct-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.ct-reveal.ct-visible { opacity: 1; transform: translateY(0); }


/* ─────────────────────────────────────────────────────
   17. ELEMENTOR OVERRIDES
   ───────────────────────────────────────────────────── */

.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.elementor-column-wrap {
  background-color: transparent;
}

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--ct-font-display) !important;
  letter-spacing: -0.035em !important;
  font-weight: 800 !important;
  color: var(--ct-text-100) !important;
}

.elementor-widget-text-editor p,
.elementor-widget-text-editor {
  font-family: var(--ct-font-body) !important;
  color: var(--ct-text-300) !important;
  line-height: 1.7 !important;
}

.elementor-button {
  font-family: var(--ct-font-body) !important;
  font-weight: 600 !important;
  border-radius: var(--ct-r-md) !important;
  transition: var(--ct-transition) !important;
}

/* Fluent Forms */
.ff-el-form-control,
.fluentform input[type="text"],
.fluentform input[type="email"] {
  background: var(--ct-surface-2) !important;
  border: 1px solid var(--ct-border-2) !important;
  border-radius: var(--ct-r-md) !important;
  color: var(--ct-text-100) !important;
  font-family: var(--ct-font-body) !important;
  padding: 10px 16px !important;
}

.ff-el-form-control:focus,
.fluentform input[type="text"]:focus,
.fluentform input[type="email"]:focus {
  border-color: var(--ct-primary) !important;
  box-shadow: 0 0 0 3px var(--ct-primary-sub) !important;
  outline: none !important;
}


/* ─────────────────────────────────────────────────────
   18. WORDPRESS LINK OVERRIDE
   ───────────────────────────────────────────────────── */

a, a:visited, a:hover, a:focus, a:active { text-decoration: none; }

.ct-btn, .ct-btn:visited, .ct-btn:hover, .ct-btn:focus, .ct-btn:active { text-decoration: none; }

.ct-btn-primary, .ct-btn-primary:visited { color: #ffffff !important; }

.ct-btn-outline, .ct-btn-outline:visited { color: var(--ct-text-200) !important; }

.ct-footer-links a, .ct-footer-links a:visited { color: var(--ct-text-400) !important; }

.ct-nav-links a, .ct-nav-links a:visited { color: var(--ct-text-300) !important; }


/* ─────────────────────────────────────────────────────
   19. UTILITÁRIOS
   ───────────────────────────────────────────────────── */

.ct-text-center  { text-align: center !important; }
.ct-text-left    { text-align: left !important; }
.ct-text-right   { text-align: right !important; }
.ct-text-100     { color: var(--ct-text-100) !important; }
.ct-text-muted   { color: var(--ct-text-300) !important; }
.ct-text-dim     { color: var(--ct-text-400) !important; }
.ct-text-primary { color: var(--ct-primary-light) !important; }
.ct-text-green   { color: var(--ct-green) !important; }
.ct-text-red     { color: var(--ct-red) !important; }
.ct-text-amber   { color: var(--ct-amber) !important; }
.ct-text-cyan    { color: var(--ct-cyan) !important; }

.ct-bg-base      { background: var(--ct-bg) !important; }
.ct-bg-surface   { background: var(--ct-surface-1) !important; }
.ct-bg-surface-2 { background: var(--ct-surface-2) !important; }

.ct-border       { border: 1px solid var(--ct-border-1) !important; }
.ct-border-2     { border: 1px solid var(--ct-border-2) !important; }

.ct-hidden       { display: none !important; }
.ct-flex         { display: flex; }
.ct-flex-center  { display: flex; align-items: center; justify-content: center; }
.ct-gap-sm       { gap: var(--ct-space-sm); }
.ct-gap-md       { gap: var(--ct-space-md); }

.ct-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ─────────────────────────────────────────────────────
   20. RESPONSIVE
   ───────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .ct-container  { padding-left: 32px; padding-right: 32px; }
  .ct-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .ct-grid-apps    { grid-template-columns: repeat(2, 1fr); }
  .ct-grid-4       { grid-template-columns: repeat(2, 1fr); }
  .ct-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ct-trust-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --ct-space-3xl: 64px; --ct-nav-height: 58px; }

  .ct-container  { padding-left: 20px; padding-right: 20px; }
  .ct-nav        { padding: 0 20px; }
  .ct-nav-links  { display: none; }

  .ct-hero       { padding: 90px 20px 60px; min-height: auto; }
  .ct-hero-ctas  { flex-direction: column; align-items: center; }

  .ct-stats-bar  { flex-wrap: wrap; }
  .ct-stat-item  { min-width: 50%; border-bottom: 1px solid var(--ct-border-1); }

  .ct-grid-2,
  .ct-grid-3,
  .ct-grid-apps,
  .ct-tools-grid { grid-template-columns: 1fr; }

  .ct-footer         { padding: 48px 20px 32px; }
  .ct-footer-top     { grid-template-columns: 1fr; gap: 28px; }
  .ct-footer-bottom  { flex-direction: column; text-align: center; }
  .ct-section        { padding: 64px 20px; }
}

@media (max-width: 480px) {
  h1, .ct-h1 { font-size: 34px; letter-spacing: -0.03em; }
  h2, .ct-h2 { font-size: 24px; }
  .ct-btn-xl { padding: 13px 24px; font-size: 15px; }
  .ct-scan-bar { flex-direction: column; }
}
