/* =========================================================
   AETech — Design System
   Tipografia editorial, gradientes mesh, micro-interações
   ========================================================= */

:root {
  /* Cores — paleta sofisticada */
  --bg: #0A0E1A;
  --bg-2: #0F1424;
  --bg-3: #161B2E;
  --surface: #FFFFFF;
  --surface-soft: #FAFAFB;
  --surface-mid: #F4F5F8;

  --ink: #0A0E1A;
  --ink-2: #1F2937;
  --ink-3: #374151;
  --muted: #6B7280;
  --muted-2: #9CA3AF;

  --line: #E5E7EB;
  --line-soft: #F0F1F4;

  --primary: #6366F1;
  --primary-deep: #4F46E5;
  --primary-light: #818CF8;
  --accent: #A855F7;
  --accent-2: #EC4899;
  --cyan: #06B6D4;
  --success: #10B981;
  --warning: #F59E0B;

  /* Gradientes */
  --gradient: linear-gradient(135deg, #6366F1 0%, #A855F7 100%);
  --gradient-hover: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,.10) 0%, rgba(168,85,247,.10) 100%);
  --gradient-mesh-1: radial-gradient(ellipse at 20% 0%, rgba(99,102,241,.25) 0%, transparent 50%);
  --gradient-mesh-2: radial-gradient(ellipse at 80% 100%, rgba(168,85,247,.22) 0%, transparent 50%);
  --gradient-mesh-3: radial-gradient(ellipse at 50% 50%, rgba(6,182,212,.10) 0%, transparent 60%);

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,.06), 0 8px 24px rgba(15,23,42,.06);
  --shadow-lg: 0 12px 24px rgba(15,23,42,.08), 0 24px 48px rgba(15,23,42,.10);
  --shadow-xl: 0 24px 48px rgba(15,23,42,.12), 0 40px 80px rgba(15,23,42,.16);
  --shadow-glow: 0 0 0 1px rgba(99,102,241,.2), 0 8px 32px rgba(99,102,241,.25);

  /* Raios */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Transições */
  --t-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tipografia */
  --font-display: 'Bricolage Grotesque', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--primary); color: white; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   TIPOGRAFIA
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p { line-height: 1.65; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--primary-light); }

.grad-text {
  background: linear-gradient(135deg, #818CF8 0%, #C084FC 50%, #F0ABFC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.link-inline {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(99,102,241,.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t);
}
.link-inline:hover { text-decoration-color: var(--primary); }

/* =========================================================
   SECTION HEAD
   ========================================================= */

section { padding: 120px 0; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-head p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   BOTÕES
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, var(--shadow-md);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1F2937 0%, #0A0E1A 100%);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, var(--shadow-lg);
}

.btn-gradient {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
}
.btn-gradient:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99,102,241,.45);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-block { width: 100%; justify-content: center; padding: 15px; }

/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.header.scrolled {
  background: rgba(255,255,255,.88);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo-mark {
  width: 44px;
  height: 44px;
  background-image: url("logo-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  /* Drop shadow sutil pra dar peso/destaque */
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.35));
}
.logo-mark span {
  /* Mantido para acessibilidade (screen readers), mas escondido visualmente */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  color: transparent;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
}

/* Wordmark "AETech" — gradient pink→violet→indigo (combinando com a nova logo) em fundo claro */
.logo-text {
  background: linear-gradient(90deg, #EC4899 0%, #8B5CF6 45%, #4F46E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.logo-dark .logo-text {
  /* No fundo escuro, gradient da logo: pink→cyan→white */
  background: linear-gradient(90deg, #F0ABFC 0%, #67E8F9 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink-3);
  font-weight: 500;
  font-size: 14.5px;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--ink); }

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-link-soft {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.nav-link-soft:hover { background: rgba(99,102,241,.08); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  background: var(--ink);
  color: white !important;
  font-weight: 600;
  font-size: 13.5px;
  transition: transform var(--t-fast), box-shadow var(--t);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: white;
  padding: 80px 0 0;
  isolation: isolate;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    var(--gradient-mesh-1),
    var(--gradient-mesh-2),
    var(--gradient-mesh-3),
    radial-gradient(ellipse at top, #1A2347 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center 30%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding-top: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 500;
  color: #CBD5E1;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16,185,129,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  color: white;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: clamp(16px, 1.7vw, 20px);
  color: #94A3B8;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.trust-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  color: #6EE7B7;
  font-weight: 500;
  font-size: 13.5px;
  backdrop-filter: blur(8px);
}

/* Dashboard mock no hero */
.hero-visual {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.hero-dashboard {
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 50px 100px -20px rgba(0,0,0,.6),
    0 30px 60px -30px rgba(99,102,241,.3);
  backdrop-filter: blur(20px);
  transform: perspective(1200px) rotateX(4deg);
  transition: transform var(--t-slow);
}
.hero-dashboard:hover { transform: perspective(1200px) rotateX(0); }

.hd-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hd-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.hd-dot:nth-child(1) { background: #FF5F57; }
.hd-dot:nth-child(2) { background: #FEBC2E; }
.hd-dot:nth-child(3) { background: #28C840; }
.hd-url {
  margin-left: 18px;
  padding: 5px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #94A3B8;
  flex: 1;
  max-width: 280px;
}

.hd-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 280px;
}

.hd-side {
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.hd-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.hd-logo span { color: white; font-weight: 700; font-size: 11px; }
.hd-menu { display: flex; flex-direction: column; gap: 8px; }
.hd-menu-item {
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.hd-menu-item.active {
  background: linear-gradient(90deg, rgba(99,102,241,.25), rgba(99,102,241,.05));
  border-left: 2px solid var(--primary-light);
}

.hd-content { padding: 24px 28px; }
.hd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.hd-stat {
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
}
.hd-stat-label {
  font-size: 11px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.hd-stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hd-stat-up {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #6EE7B7;
  background: rgba(16,185,129,.15);
  padding: 2px 8px;
  border-radius: 6px;
}

.hd-chart {
  height: 80px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
}
.hd-chart svg { width: 100%; height: 100%; }

/* Cards flutuantes */
.hero-card-floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(20,24,40,.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  animation: float 6s ease-in-out infinite;
}
.hcf-1 { top: 12%; left: -10px; animation-delay: 0s; }
.hcf-2 { bottom: 32%; right: -10px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hcf-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
}
.hcf-title {
  font-size: 13px; font-weight: 600; color: white;
  font-family: var(--font-display);
}
.hcf-sub { font-size: 11.5px; color: #94A3B8; }

/* =========================================================
   SEGMENTOS (marquee)
   ========================================================= */

.segments {
  background: var(--surface);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line-soft);
}
.segments-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.segments-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.segments-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.segments-track span {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.segments-track i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  display: block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SERVIÇOS
   ========================================================= */

.services { background: var(--surface); }

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.service-card {
  position: relative;
  background: var(--surface);
  padding: 40px 36px 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(99,102,241,.25);
}
.service-card-featured {
  background: var(--ink);
  color: white;
  border-color: rgba(255,255,255,.08);
}
.service-card-featured h3 { color: white; }
.service-card-featured p { color: #94A3B8; }
.service-card-featured .service-num { color: rgba(255,255,255,.4); }
.service-card-featured .service-list li { color: #CBD5E1; }
.service-card-featured .service-list svg { color: var(--success); }
.service-card-featured .service-cta { color: white; }

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
  box-shadow: 0 4px 16px rgba(99,102,241,.4);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--gradient-soft);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary);
}
.service-card-featured .service-icon {
  background: rgba(99,102,241,.15);
  color: var(--primary-light);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
}
.service-list svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  transition: gap var(--t);
}
.service-cta:hover { gap: 12px; }

/* =========================================================
   STATS
   ========================================================= */

.stats {
  background: var(--surface-soft);
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-num small {
  font-size: 0.4em;
  font-weight: 500;
  margin-left: 2px;
}
.stat-label {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}

/* =========================================================
   DIFERENCIAIS
   ========================================================= */

.diferenciais { background: var(--surface); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.diferencial {
  padding: 36px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.diferencial:hover {
  background: var(--surface-soft);
  border-color: var(--line);
  transform: translateY(-4px);
}
.diferencial-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--gradient-soft);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.diferencial-icon svg { width: 24px; height: 24px; }
.diferencial h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.diferencial p {
  font-size: 14.5px;
  color: var(--muted);
}

/* =========================================================
   PROCESSO
   ========================================================= */

.process {
  background: var(--bg);
  color: white;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(99,102,241,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(168,85,247,.15) 0%, transparent 50%);
  pointer-events: none;
}
.process h2 { color: white; }
.process .section-head p { color: #94A3B8; }
.process .eyebrow { color: var(--primary-light); }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  transition: background var(--t), border-color var(--t), transform var(--t);
  backdrop-filter: blur(8px);
}
.step:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(99,102,241,.4);
  transform: translateY(-4px);
}
.step-line {
  position: absolute;
  top: 50px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(99,102,241,.4), transparent);
  z-index: 1;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.step h3 {
  color: white;
  font-size: 19px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14.5px;
  color: #94A3B8;
  line-height: 1.6;
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */

.testimonials { background: var(--surface-soft); }
.testi-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99,102,241,.2);
}
.testi-stars { display: flex; gap: 3px; color: var(--warning); }
.testi-stars svg { width: 17px; height: 17px; }
.testi-quote {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
}
.testi-role { font-size: 13px; color: var(--muted); }

/* =========================================================
   GARANTIA EXPLÍCITA
   ========================================================= */

.guarantee { background: var(--surface); padding: 100px 0; }

.guarantee-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: flex-start;
  padding: 56px 56px;
  background: linear-gradient(135deg, #0A0E1A 0%, #161B2E 100%);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.guarantee-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(16,185,129,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(99,102,241,.15) 0%, transparent 50%);
  pointer-events: none;
}

.guarantee-shield {
  position: relative;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
  border-radius: 32px;
  display: grid;
  place-items: center;
  color: white;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1) inset,
    0 30px 60px rgba(16,185,129,.3);
  margin: 0 auto;
}
.guarantee-shield svg { width: 100px; height: 100px; }
.guarantee-shield::after {
  content: '7d';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 64px; height: 64px;
  background: white;
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.guarantee-content { position: relative; }

.guarantee-title {
  color: white;
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 16px;
}

.guarantee-intro {
  color: #94A3B8;
  font-size: 16px;
  margin-bottom: 28px;
}

.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.guarantee-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.g-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(16,185,129,.15);
  color: var(--success);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.g-icon svg { width: 16px; height: 16px; }
.guarantee-list strong {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 4px;
}
.guarantee-list span {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.55;
}

.guarantee-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.guarantee-foot .btn-primary {
  background: white;
  color: var(--ink);
}
.guarantee-foot .btn-primary:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
}
.guarantee-fineprint {
  font-size: 13px;
  color: var(--muted-2);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq { background: var(--surface); }
.faq-container { max-width: 880px; }

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item:hover { border-color: rgba(99,102,241,.25); }
.faq-item[open] {
  border-color: rgba(99,102,241,.35);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--surface-soft);
  display: grid; place-items: center;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}
.faq-icon svg { width: 18px; height: 18px; }
.faq-item[open] .faq-icon {
  background: var(--gradient);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
  animation: fadeIn 0.3s ease;
}
.faq-answer p { color: var(--muted); }
.faq-answer strong { color: var(--ink); font-weight: 600; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CTA / FORM
   ========================================================= */

.cta-section { background: var(--surface-soft); }
.cta-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 64px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.cta-info h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 18px;
}
.cta-info p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
}

.cta-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.cta-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}
.cta-meta-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--gradient-soft);
  display: grid; place-items: center;
  color: var(--primary);
}
.cta-meta-icon svg { width: 18px; height: 18px; }

/* Item de contato como link clicável (telefone/whatsapp/email) */
.cta-meta-link {
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-fast), color var(--t-fast);
  cursor: pointer;
}
.cta-meta-link:hover {
  transform: translateX(3px);
  color: var(--primary);
}
.cta-meta-link:hover .cta-meta-icon {
  background: var(--primary);
}
.cta-meta-link:hover .cta-meta-icon svg { color: white; }

/* Spinner de envio do formulário */
.spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Tela de sucesso pós-envio do formulário */
.form-success {
  text-align: center;
  padding: 32px 16px;
  animation: fadeIn 0.5s ease;
}
.form-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10B981, #06B6D4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-success h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #4F46E5 0%, #9333EA 50%, #DB2777 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.form-success p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 12px;
}
.form-success-deadline {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 8px !important;
  margin-bottom: 24px !important;
  font-size: 14px !important;
  color: var(--ink-2) !important;
}
.form-success-deadline strong { color: var(--primary-deep); }
.form-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}
.form-success-wa {
  background: #25D366 !important;
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-success-wa:hover {
  background: #1DA851 !important;
  transform: translateY(-2px);
}
.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-link:hover { color: var(--primary-deep); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,.1);
}
.field textarea { resize: vertical; min-height: 96px; }
.form .btn-primary {
  background: var(--gradient);
  color: white;
}
.form .btn-primary:hover {
  background: var(--gradient-hover);
}
.form-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--bg);
  color: #94A3B8;
  padding: 80px 0 32px;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.6;
}

footer h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
footer ul { display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  font-size: 14.5px;
  transition: color var(--t-fast);
}
footer ul a:hover { color: white; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  transition: background var(--t), color var(--t), transform var(--t);
}
.socials a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-made { color: var(--muted); }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.whats-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.4);
  transition: transform var(--t);
}
.whats-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 28px; height: 28px; }

/* =========================================================
   ANIMATIONS
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   LP ESPECÍFICO
   ========================================================= */

.lp-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-bar.show { transform: translateY(0); }
.lp-bar-text {
  font-size: 14px;
  font-weight: 500;
}
.lp-bar-text strong { color: white; font-weight: 700; }
.lp-bar .btn { padding: 10px 20px; font-size: 13.5px; }

.lp-hero {
  padding: 60px 0 80px;
}
.lp-hero .hero-title { font-size: clamp(36px, 6vw, 76px); }

.urgency-bar {
  background: linear-gradient(90deg, var(--warning), var(--accent-2));
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.urgency-bar strong { font-weight: 700; }

.pain-points {
  background: var(--surface);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pain-card {
  background: linear-gradient(135deg, #FEF2F2 0%, #FFF5F5 100%);
  border: 1px solid #FEE2E2;
  border-radius: var(--r-lg);
  padding: 28px;
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(239,68,68,.1);
  color: #EF4444;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pain-icon svg { width: 22px; height: 22px; }
.pain-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #991B1B;
}
.pain-card p {
  font-size: 14.5px;
  color: #7F1D1D;
}

.benefits {
  background: var(--surface-soft);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.benefit {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t), transform var(--t);
}
.benefit:hover {
  border-color: rgba(99,102,241,.3);
  transform: translateY(-3px);
}
.benefit-check {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--success);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.benefit-check svg { width: 16px; height: 16px; }
.benefit h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.benefit p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.offer {
  background: var(--surface);
}
.offer-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-3) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow: var(--shadow-xl);
}
.offer-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(99,102,241,.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(168,85,247,.18) 0%, transparent 50%);
  pointer-events: none;
}
.offer-card > * { position: relative; }
.offer-card h3 {
  font-size: 14px;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}
.offer-card h2 { color: white; margin-bottom: 18px; }
.offer-card > p {
  color: #94A3B8;
  font-size: 16px;
  margin-bottom: 36px;
}
.offer-includes {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 36px;
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
}
.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #CBD5E1;
}
.offer-includes svg {
  width: 18px; height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-link-soft { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  section { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }
  .hero-inner { padding-top: 32px; }
  .hero-trust { margin-bottom: 56px; }
  .hero-card-floating { display: none; }
  .guarantee-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
  }
  .guarantee-shield { width: 140px; height: 140px; }
  .guarantee-shield svg { width: 70px; height: 70px; }
  .guarantee-shield::after { width: 48px; height: 48px; font-size: 18px; }
  .cta-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .step-line { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero { padding-top: 56px; }
  .hero-title { line-height: 1; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hd-stats { grid-template-columns: 1fr; }
  .hd-side { display: none; }
  .hd-body { grid-template-columns: 1fr; }
  .offer-includes { grid-template-columns: 1fr; padding: 22px; }
  .offer-card { padding: 40px 24px; }
  .lp-bar { padding: 10px 14px; gap: 10px; }
  .lp-bar-text { font-size: 12.5px; }
}
