/* ═══════════════════════════════════════════════════
   LINKTY TECH — BASE CSS
   Design System: Grafite + Índigo + Cyan + Secundárias
   Versão: 1.0 · Abril 2026
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700;800;900&family=Red+Hat+Text:wght@400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  /* Neutros */
  --carbon:    #0A0C12;
  --graphite:  #111827;
  --gunmetal:  #1F2937;
  --iron:      #374151;
  --zinc:      #4B5563;
  --smoke:     #6B7280;
  --mist:      #9CA3AF;
  --silver:    #D1D5DB;
  --fog:       #F3F4F6;
  --white:     #FFFFFF;
  --gray-base: #E3E3E8; /* 11% black + 5pts azul */

  /* Primária */
  --indigo:     #6366F1;
  --indigo-d:   #4F46E5;
  --indigo-l:   #818CF8;
  --indigo-dim: rgba(99,102,241,0.12);
  --indigo-glow:rgba(99,102,241,0.25);

  /* Acento 1 — Cyan */
  --cyan:     #22D3EE;
  --cyan-d:   #06B6D4;
  --cyan-dim: rgba(34,211,238,0.12);

  /* Acento 2 — Âmbar/Amarelo */
  --amber:    #F59E0B;
  --amber-d:  #D97706;
  --amber-dim:rgba(245,158,11,0.12);

  /* Acento 3 — Laranja */
  --orange:   #F97316;
  --orange-d: #EA580C;
  --orange-dim:rgba(249,115,22,0.12);

  /* Acento 4 — Verde */
  --green:    #10B981;
  --green-d:  #059669;
  --green-dim:rgba(16,185,129,0.12);

  /* Acento 5 — Rosa/Fúcsia */
  --pink:     #EC4899;
  --pink-dim: rgba(236,72,153,0.12);

  /* Cores por produto */
  --crm-color:   #3B82F6;  /* Azul */
  --loc-color:   #10B981;  /* Verde */
  --site-color:  #8B5CF6;  /* Roxo */
  --credi-color: #F59E0B;  /* Âmbar */
  --law-color:   #EC4899;  /* Rosa */

  /* Textos */
  --text-1: #F9FAFB;
  --text-2: #D1D5DB;
  --text-3: #9CA3AF;
  --text-4: #6B7280;

  /* Superfícies */
  --bg:      #0A0C12;
  --bg2:     #111827;
  --bg3:     #1F2937;
  --surface: rgba(255,255,255,0.04);
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);

  /* Sombras */
  --sh-sm:     0 2px 8px rgba(0,0,0,0.3);
  --sh-md:     0 8px 32px rgba(0,0,0,0.4);
  --sh-lg:     0 20px 60px rgba(0,0,0,0.5);
  --sh-indigo: 0 8px 32px rgba(99,102,241,0.3);
  --sh-cyan:   0 8px 32px rgba(34,211,238,0.2);

  /* Tipografia */
  --font-h: 'Red Hat Display', sans-serif;
  --font-b: 'Red Hat Text', sans-serif;

  /* Bordas */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 100px;

  /* Grid */
  --col-4: repeat(4, 1fr);
  --col-3: repeat(3, 1fr);
  --col-2: repeat(2, 1fr);
  --gap:   24px;

  /* Glass */
  --glass-bg:  rgba(255,255,255,0.04);
  --glass-blur:blur(20px);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: pointer; border: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── CONTAINER ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BACKGROUND NOISE ───────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 10% 15%, rgba(99,102,241,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 700px 600px at 90% 80%, rgba(34,211,238,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 50% 40%, rgba(99,102,241,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── GLASS CARD ─────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
}

.glass-strong {
  background: rgba(255,255,255,0.07);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border2);
}

/* ─── NAVBAR ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(10,12,18,0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  color: white;
  box-shadow: var(--sh-indigo);
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 18px;
  color: var(--text-1);
  letter-spacing: -0.3px;
}

.logo-name span { color: var(--indigo-l); }

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

.nav-link {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  background: transparent;
  transition: all 0.2s;
}

.nav-link:hover { color: var(--text-1); background: var(--surface); }
.nav-link.active { color: var(--indigo-l); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25D366;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-wa:hover { background: rgba(37,211,102,0.2); }

.nav-cta {
  padding: 8px 20px;
  border-radius: var(--r-sm);
  background: var(--indigo);
  color: white;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--sh-indigo);
  transition: all 0.2s;
}

.nav-cta:hover { background: var(--indigo-d); transform: translateY(-1px); }

.nav-login {
  padding: 7px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border2);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  transition: all 0.2s;
}

.nav-login:hover { border-color: var(--indigo); color: var(--indigo-l); }

/* Ham mobile */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── SECOES ─────────────────────────────────────── */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.section-sm { padding: 64px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo-l);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--indigo-l);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo-l);
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-1);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 17px;
  color: var(--text-3);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.section-sub.center { text-align: center; margin: 0 auto 56px; }

/* ─── BOTÕES ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: var(--indigo);
  color: white;
  box-shadow: var(--sh-indigo);
}

.btn-primary:hover { background: var(--indigo-d); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(99,102,241,0.4); }

.btn-secondary {
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border2);
}

.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--indigo); color: var(--indigo-l); transform: translateY(-1px); }

.btn-cyan {
  background: var(--cyan);
  color: var(--carbon);
  box-shadow: var(--sh-cyan);
  font-weight: 700;
}

.btn-cyan:hover { background: var(--cyan-d); transform: translateY(-2px); }

.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-wa:hover { background: #20b556; transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ─── GRID SYSTEM ────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: var(--col-4); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: var(--col-3); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: var(--col-2); gap: var(--gap); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }

/* ─── CARDS ──────────────────────────────────────── */
.card {
  border-radius: var(--r-lg);
  padding: 28px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ─── BADGE ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-indigo { background: var(--indigo-dim); color: var(--indigo-l); border: 1px solid rgba(99,102,241,0.2); }
.badge-cyan   { background: var(--cyan-dim);   color: var(--cyan);     border: 1px solid rgba(34,211,238,0.2); }
.badge-green  { background: var(--green-dim);  color: var(--green);    border: 1px solid rgba(16,185,129,0.2); }
.badge-amber  { background: var(--amber-dim);  color: var(--amber);    border: 1px solid rgba(245,158,11,0.2); }
.badge-orange { background: var(--orange-dim); color: var(--orange);   border: 1px solid rgba(249,115,22,0.2); }
.badge-pink   { background: var(--pink-dim);   color: var(--pink);     border: 1px solid rgba(236,72,153,0.2); }
.badge-live   { background: rgba(16,185,129,0.12); color: #34D399; border: 1px solid rgba(16,185,129,0.25); }
.badge-soon   { background: rgba(245,158,11,0.12); color: #FBB040; border: 1px solid rgba(245,158,11,0.25); }

/* ─── GRADIENTE DE TEXTO ─────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--indigo-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text-amber {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── IMAGEM PLACEHOLDER ─────────────────────────── */
.img-placeholder {
  width: 100%;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--graphite), var(--gunmetal));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-4);
  font-size: 13px;
  font-weight: 500;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.08) 0%, transparent 70%);
}

/* ─── DIVIDER ────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── FEATURE LIST ───────────────────────────────── */
.feat-list { display: flex; flex-direction: column; gap: 12px; }

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--indigo-dim);
  color: var(--indigo-l);
}

/* ─── MARQUEE ────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── STAT ───────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg2);
  padding: 32px 24px;
  text-align: center;
}

.stat-val {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 36px;
  color: var(--text-1);
  margin-bottom: 4px;
}

.stat-val span { color: var(--indigo-l); }
.stat-lbl { font-size: 13px; color: var(--text-4); }

/* ─── STEP ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--indigo), var(--cyan));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 18px;
  color: var(--indigo-l);
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px rgba(99,102,241,0.08);
}

.step-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.step-desc { font-size: 13px; color: var(--text-4); line-height: 1.6; }

/* ─── PRODUTO CARD ───────────────────────────────── */
.produto-card {
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  background: var(--glass-bg);
}

.produto-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.06;
  transform: translate(40%, -40%);
  transition: opacity 0.3s;
}

.produto-card:hover::before { opacity: 0.12; }
.produto-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.produto-card.crm  { border-color: rgba(59,130,246,0.2);  }
.produto-card.crm::before  { background: var(--crm-color);  }
.produto-card.loc  { border-color: rgba(16,185,129,0.2);  }
.produto-card.loc::before  { background: var(--loc-color);  }
.produto-card.site { border-color: rgba(139,92,246,0.2);  }
.produto-card.site::before { background: var(--site-color); }
.produto-card.credi{ border-color: rgba(245,158,11,0.2);  }
.produto-card.credi::before{ background: var(--credi-color);}

.prod-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.crm  .prod-icon-wrap { background: rgba(59,130,246,0.12);  }
.loc  .prod-icon-wrap { background: rgba(16,185,129,0.12);  }
.site .prod-icon-wrap { background: rgba(139,92,246,0.12);  }
.credi .prod-icon-wrap{ background: rgba(245,158,11,0.12);  }

.prod-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  color: var(--text-1);
  margin-bottom: 4px;
}

.prod-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.crm  .prod-tagline { color: var(--crm-color);  }
.loc  .prod-tagline { color: var(--loc-color);  }
.site .prod-tagline { color: var(--site-color); }
.credi .prod-tagline{ color: var(--credi-color);}

.prod-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 20px;
}

.prod-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.prod-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}

.prod-feat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.crm  .prod-feat-dot { background: var(--crm-color);  }
.loc  .prod-feat-dot { background: var(--loc-color);  }
.site .prod-feat-dot { background: var(--site-color); }
.credi .prod-feat-dot{ background: var(--credi-color);}

.prod-cta {
  width: 100%;
  padding: 11px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid;
}

.crm  .prod-cta { color: var(--crm-color);   border-color: rgba(59,130,246,0.3);  background: rgba(59,130,246,0.08);  }
.loc  .prod-cta { color: var(--loc-color);   border-color: rgba(16,185,129,0.3);  background: rgba(16,185,129,0.08);  }
.site .prod-cta { color: var(--site-color);  border-color: rgba(139,92,246,0.3);  background: rgba(139,92,246,0.08);  }
.credi .prod-cta{ color: var(--credi-color); border-color: rgba(245,158,11,0.3);  background: rgba(245,158,11,0.08);  }

.prod-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── NICHO CARD ─────────────────────────────────── */
.nicho-card {
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  transition: all 0.25s;
}

.nicho-card:hover { border-color: var(--indigo-glow); transform: translateY(-4px); }

.nicho-icon { font-size: 36px; margin-bottom: 14px; }

.nicho-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.nicho-desc { font-size: 13px; color: var(--text-4); line-height: 1.6; margin-bottom: 16px; }

.nicho-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.nicho-tag {
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  background: var(--indigo-dim);
  color: var(--indigo-l);
  border: 1px solid rgba(99,102,241,0.15);
}

/* ─── DEPOIMENTO ─────────────────────────────────── */
.depo-card {
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
}

.depo-stars { color: var(--amber); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

.depo-result {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  background: var(--green-dim);
  padding: 4px 10px;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 12px;
}

.depo-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.depo-name { font-weight: 600; font-size: 14px; color: var(--text-1); }
.depo-role { font-size: 12px; color: var(--text-4); }

/* ─── BLOG CARD ──────────────────────────────────── */
.blog-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  transition: all 0.25s;
}

.blog-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); box-shadow: var(--sh-md); }

.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--graphite), var(--gunmetal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-4);
  font-size: 13px;
}

.blog-body { padding: 20px; }

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--indigo-l);
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.blog-card:hover .blog-title { color: var(--indigo-l); }

.blog-excerpt { font-size: 13px; color: var(--text-4); line-height: 1.6; margin-bottom: 14px; }

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-4);
}

/* ─── CTA BOX ────────────────────────────────────── */
.cta-box {
  border-radius: var(--r-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(79,70,229,0.9), rgba(99,102,241,0.7));
  border: 1px solid rgba(99,102,241,0.3);
  box-shadow: 0 24px 80px rgba(99,102,241,0.3);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(34,211,238,0.15) 0%, transparent 60%);
}

.cta-box h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  color: white;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.5px;
}

.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--carbon);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 260px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-desc { font-size: 13px; color: var(--text-4); line-height: 1.7; margin-bottom: 20px; }

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-decoration: none;
}

.social-btn:hover { background: var(--indigo-dim); border-color: var(--indigo); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: var(--text-4);
  margin-bottom: 10px;
  transition: color 0.15s;
  cursor: pointer;
}

.footer-link:hover { color: var(--indigo-l); }

.footer-bot {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bot-links { display: flex; gap: 20px; }

/* ─── WHATSAPP FLOAT ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }

.wa-float-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.2);
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
}


/* ─── MOCK DASHBOARD ─────────────────────────────── */
.mock-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: var(--sh-lg);
  background: var(--bg2);
}

.mock-topbar {
  height: 48px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; }

.mock-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
}

.mock-sidebar {
  background: var(--carbon);
  border-right: 1px solid var(--border);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-sb-item {
  height: 32px;
  border-radius: 8px;
  background: var(--surface);
}

.mock-sb-item.active { background: var(--indigo-dim); }

.mock-main { padding: 20px; }

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mock-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.mock-kpi-val {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-1);
  margin-bottom: 3px;
}

.mock-kpi-lbl { font-size: 11px; color: var(--text-4); }
.mock-kpi.highlight .mock-kpi-val { color: var(--indigo-l); }

.mock-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 12px;
}

.mock-bar-item {
  flex: 1;
  background: linear-gradient(to top, var(--indigo), rgba(99,102,241,0.3));
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}

/* ─── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: var(--col-2); }
  .stat-grid { grid-template-columns: var(--col-2); }
  .steps-grid { grid-template-columns: var(--col-2); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: var(--col-2); }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bot { flex-direction: column; text-align: center; }
  .mock-kpis { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 20px; right: 20px; }
}

/* ═══════════════════════════════════════════════════
   AJUSTES — Nav Dropdown + Mobile Panel + Typography
   + Cookie Banner + Card Placeholders
   Versão: 2.0 · Abril 2026
═══════════════════════════════════════════════════ */

/* ─── TIPOGRAFIA GLOBAL ──────────────────────────── */
h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
h2 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3;
  margin-bottom: 16px;
}
p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ─── CONTAINER DESKTOP PADDING ─────────────────── */
@media (min-width: 769px) {
  .container { padding: 0 40px; }
}

/* ─── NAV DROPDOWN DESKTOP ───────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dd-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-b);
}

.nav-dd-toggle:hover { color: var(--text-1); background: var(--surface); }

.nav-dd-toggle .dd-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown.open .dd-arrow { transform: rotate(180deg); }

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(17,24,39,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 300;
}

.nav-dropdown.open .nav-dd-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: hover) and (min-width: 769px) {
  .nav-dropdown:hover .nav-dd-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-dropdown:hover .dd-arrow { transform: rotate(180deg); }
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-dd-item:hover {
  background: var(--indigo-dim);
  color: var(--indigo-l);
}

.nav-dd-item svg { flex-shrink: 0; opacity: 0.7; }

/* ─── NAV DROPDOWN — UPGRADE (rich items) ──────── */
.nav-arrow {
  display: inline-block;
  transition: transform 0.2s;
  font-size: 10px;
  opacity: 0.7;
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--surface-2, rgba(17,24,39,0.97));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(.22,1,.36,1),
              transform 0.2s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: background 0.15s;
  text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--border); }
.nav-dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.nav-dropdown-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.2;
}
.nav-dropdown-desc {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
  line-height: 1.3;
}

/* ─── MOBILE PANEL (sidebar) ──────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 298;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--graphite);
  border-left: 1px solid var(--border2);
  z-index: 299;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-panel.open { transform: translateX(0); }

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  transition: all 0.2s;
}

.mobile-close:hover { background: var(--indigo-dim); color: var(--indigo-l); border-color: var(--indigo); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex: 1;
  gap: 2px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.15s;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
}

.mobile-link:hover { background: var(--surface); color: var(--text-1); }

.mobile-dd-arrow { transition: transform 0.2s; flex-shrink: 0; }

.mobile-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 4px 16px;
}

.mobile-sub.open { display: flex; }

.mobile-sub-link {
  display: block;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  text-decoration: none;
  transition: all 0.15s;
  border-left: 2px solid var(--border);
}

.mobile-sub-link:hover { color: var(--indigo-l); border-color: var(--indigo); background: var(--indigo-dim); }

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--r-md);
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-wa:hover { background: #20b556; }
.mobile-actions .btn { justify-content: center; }

/* Hide nav-wa (WhatsApp link) from desktop nav */
@media (min-width: 769px) {
  .nav-ham { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-ham { display: flex; }
}

/* ─── PRODUTO CARDS v2 (4 combos home) ───────────── */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.combo-card {
  border-radius: var(--r-xl);
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.combo-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  border-radius: 50%;
  opacity: 0.06;
  transform: translate(40%, -40%);
  transition: opacity 0.3s;
}

.combo-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.combo-card:hover::before { opacity: 0.13; }

.combo-card.crm   { border-color: rgba(59,130,246,0.2); }
.combo-card.crm::before   { background: var(--crm-color); }
.combo-card.crm-site { border-color: rgba(99,102,241,0.3); background: var(--indigo-dim); }
.combo-card.crm-site::before { background: var(--indigo); }
.combo-card.loc   { border-color: rgba(16,185,129,0.2); }
.combo-card.loc::before   { background: var(--loc-color); }
.combo-card.combo { border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.05); }
.combo-card.combo::before { background: var(--amber); }

.combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  width: fit-content;
}

.combo-badge.agregado { background: var(--indigo-dim); color: var(--indigo-l); border: 1px solid rgba(99,102,241,0.2); }
.combo-badge.melhor   { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(245,158,11,0.3); }

.combo-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.combo-card.crm     .combo-icon { background: rgba(59,130,246,0.12); color: var(--crm-color); }
.combo-card.crm-site .combo-icon { background: var(--indigo-dim); color: var(--indigo-l); }
.combo-card.loc     .combo-icon { background: rgba(16,185,129,0.12); color: var(--loc-color); }
.combo-card.combo   .combo-icon { background: var(--amber-dim); color: var(--amber); }

.combo-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 19px;
  color: var(--text-1);
  line-height: 1.2;
}

.combo-para {
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.6;
  flex: 1;
}

.combo-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.combo-feat {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-3);
}

.combo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.2s;
  margin-top: auto;
}

.combo-card.crm      .combo-cta { color: var(--crm-color);  border-color: rgba(59,130,246,0.3);  background: rgba(59,130,246,0.08); }
.combo-card.crm-site .combo-cta { color: var(--indigo-l);   border-color: rgba(99,102,241,0.3);  background: var(--indigo-dim); }
.combo-card.loc      .combo-cta { color: var(--loc-color);  border-color: rgba(16,185,129,0.3);  background: rgba(16,185,129,0.08); }
.combo-card.combo    .combo-cta { color: var(--amber);      border-color: rgba(245,158,11,0.35); background: var(--amber-dim); }
.combo-cta:hover { opacity: 0.85; transform: translateY(-1px); }

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

/* ─── BLOG CARDS v2 (sem emoji, minimalista) ──────── */
.card-img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--graphite), var(--gunmetal));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-img-placeholder::before {
  content: attr(data-cat);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-4);
}
.card-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(99,102,241,0.1) 0%, transparent 60%);
}

/* ─── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--graphite);
  border-top: 1px solid var(--border2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a { color: var(--indigo-l); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-recusar {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text-3);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-b);
}
.cookie-btn-recusar:hover { border-color: var(--text-3); color: var(--text-1); }

.cookie-btn-aceitar {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  background: var(--indigo);
  border: none;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-b);
}
.cookie-btn-aceitar:hover { background: var(--indigo-d); }

@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn-recusar, .cookie-btn-aceitar { flex: 1; text-align: center; }
}
