/* ─────────────────────────────────────────────
   DECAIRES TECHNOLOGY — style.css
   Dark cyberpunk-tech aesthetic
   Neon blue (#00d4ff) on deep dark (#070b14)
───────────────────────────────────────────── */

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

:root {
  --neon: #00d4ff;
  --neon-dim: rgba(0,212,255,0.15);
  --neon-glow: rgba(0,212,255,0.35);
  --bg: #070b14;
  --bg-2: #0c1220;
  --bg-3: #111927;
  --text: #e2eaf4;
  --text-muted: #6a7f99;
  --border: rgba(0,212,255,0.12);
  --border-hover: rgba(0,212,255,0.4);
  --font-display: 'Orbitron', monospace;
  --font-body: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-h: 70px;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--neon-dim); color: var(--neon); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 99px; }

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-outline {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition-property: opacity;
  transition-duration: .3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--neon);
  top: 0; left: 0;
}
.cursor-outline {
  width: 28px; height: 28px;
  border: 1.5px solid var(--neon);
  top: 0; left: 0;
  opacity: .5;
  transition: width .25s, height .25s, opacity .3s;
}
body:hover .cursor-dot,
body:hover .cursor-outline { opacity: 1; }

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

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

/* ── SECTIONS ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--neon);
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.neon { color: var(--neon); }
.accent { color: var(--neon); }

/* ── NAV ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(7,11,20,0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
}
.logo-tech {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .85em;
  letter-spacing: .06em;
}
.footer-logo .logo-text {
  font-size: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--neon);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.btn-nav {
  color: var(--neon) !important;
  border: 1px solid var(--border-hover);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition) !important;
}
.btn-nav:hover { background: var(--neon-dim); }
.btn-nav::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--neon);
  color: var(--bg);
}
.btn-primary:hover {
  box-shadow: 0 0 24px var(--neon-glow), 0 4px 20px rgba(0,212,255,0.3);
}
.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.btn-secondary {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: var(--neon-dim);
  box-shadow: 0 0 20px var(--neon-dim);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  overflow: hidden;
}

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

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp .9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeDown .6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-logo-wrap {
  margin-bottom: 24px;
  animation: fadeDown .7s ease both;
}
.big-logo {
  width: 100px; height: 100px;
  margin: 0 auto;
  animation: rotateSlow 20s linear infinite;
  filter: drop-shadow(0 0 16px rgba(0,212,255,0.6));
}
.big-logo svg { width: 100%; height: 100%; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-line { display: block; }
.title-sub {
  display: block;
  font-size: 0.44em;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

.hero-slogan {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}



.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--neon), transparent);
  animation: scrollPulse 2s ease infinite;
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── SOBRE ── */
.sobre {
  background: var(--bg-2);
  overflow: hidden;
}

.sobre-bg-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(0,212,255,0.02) 120px,
    rgba(0,212,255,0.02) 121px
  );
  pointer-events: none;
}

.section-subtitle {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* left column */
.sobre-lead-block {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.sobre-lead-bar {
  width: 3px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, var(--neon), transparent);
  border-radius: 2px;
  align-self: stretch;
}
.sobre-text {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
}
.sobre-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.sobre-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.pillar:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: 0 0 24px var(--neon-dim);
}
.pillar-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--neon-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.pillar:hover .pillar-icon { border-color: var(--border-hover); }
.pillar-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pillar-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}
.pillar-desc {
  font-size: 12px;
  color: var(--text-muted);
}
.pillar-arrow {
  font-size: 16px;
  color: var(--neon);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
}
.pillar:hover .pillar-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* right column — competence grid */
.sobre-visual {
  position: relative;
}
.sobre-card-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.competence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.comp-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.comp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.comp-card:hover::before { opacity: 1; }
.comp-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px var(--neon-dim);
}
.comp-icon {
  width: 52px; height: 52px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  margin-bottom: 2px;
}
.comp-card:hover .comp-icon {
  border-color: var(--border-hover);
  background: var(--neon-dim);
}
.comp-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .04em;
  line-height: 1.3;
}
.comp-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ── SERVIÇOS ── */
.servicos { background: var(--bg); }

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

.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.service-card.visible {
  animation: fadeUp 0.6s ease both;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--neon-dim);
}
.service-card.featured {
  border-color: rgba(0,212,255,0.3);
  background: linear-gradient(135deg, var(--bg-2), rgba(0,212,255,0.04));
}
.service-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.2);
}

.card-line {
  position: absolute;
  top: 0; left: 28px;
  width: 40px; height: 2px;
  background: var(--neon);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity var(--transition), width var(--transition);
}
.service-card:hover .card-line {
  opacity: 1;
  width: 60px;
}

.featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--neon-dim);
  border: 1px solid var(--border-hover);
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 99px;
}

.card-icon {
  width: 64px; height: 64px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color var(--transition), background var(--transition);
}
.service-card:hover .card-icon {
  border-color: var(--border-hover);
  background: var(--neon-dim);
}

.card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .06em;
}

/* ── SCOUT ── */
.scout-section { background: var(--bg); }

.scout-bg-effect {
  position: absolute;
  top: 50%; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse 60% 60% at 100% 50%, rgba(0,212,255,0.05), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.scout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.scout-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* Chat window — mesmos tokens do card de serviço */
.scout-chat-area { position: relative; }

.chat-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  position: relative;
}
.chat-window::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: .6;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.chat-status-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
.chat-header-info { flex: 1; }
.chat-name {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
}
.chat-online {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #00ff88;
  margin-top: 1px;
  display: block;
}
.chat-company-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.chat-messages {
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
  background: var(--bg-2);
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  max-width: 86%;
  animation: fadeUp .25s ease;
}
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }

.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--neon);
  flex-shrink: 0;
}
.msg.bot .msg-avatar {
  background: var(--neon-dim);
  border-color: var(--border-hover);
}

.msg-bubble {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.6;
}
.msg.bot .msg-bubble {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--neon);
  color: var(--bg);
  font-weight: 500;
  border-bottom-right-radius: 4px;
}
.msg-bubble.typing {
  display: flex; gap: 4px; align-items: center;
}
.msg-bubble.typing span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  opacity: .4;
  animation: bounce 1.2s ease infinite;
}
.msg-bubble.typing span:nth-child(2) { animation-delay: .2s; }
.msg-bubble.typing span:nth-child(3) { animation-delay: .4s; }

/* Chips */
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 18px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}
.chat-chip {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.chat-chip:hover {
  color: var(--neon);
  border-color: var(--border-hover);
  background: var(--neon-dim);
}

/* Input */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}
.chat-input-bar input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.chat-input-bar input:focus { border-color: var(--border-hover); }
.chat-input-bar input::placeholder { color: var(--text-muted); }

.chat-send-btn {
  width: 38px; height: 38px;
  background: var(--neon);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.chat-send-btn:hover {
  box-shadow: 0 0 16px var(--neon-glow);
  transform: scale(1.05);
}
.chat-send-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* WPP CTA */
.scout-wpp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0a7a6e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
  font-family: var(--font-body);
}
.scout-wpp-cta:hover { background: #075e54; }

/* Lead badge */
.scout-lead-badge {
  background: rgba(0,255,136,0.05);
  border-top: 1px solid rgba(0,255,136,0.15);
  color: #00cc66;
  font-size: 13px;
  padding: 12px 18px;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}


/* ── CONTATO ── */
.contato { background: var(--bg); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contato-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 320px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--neon-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-label {
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.ci-val {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px var(--neon-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-btn { width: 100%; justify-content: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--neon);
  font-size: 14px;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-link:hover {
  color: var(--neon);
  border-color: var(--border-hover);
  background: var(--neon-dim);
}
.footer-links-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--neon); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .competence-grid { grid-template-columns: repeat(3, 1fr); }
  .scout-wrapper { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  body { cursor: auto; }
  .cursor-dot, .cursor-outline { display: none; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7,11,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-link { display: block; padding: 16px 24px; font-size: 15px; }
  .nav-link::after { display: none; }
  .btn-nav { border: none; border-radius: 0; padding: 16px 24px; }

  .section { padding: 72px 0; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-visual { height: 200px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { opacity: 1; transform: none; }

  .scout-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .scout-pillars { margin-top: 24px; }

  .competence-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-sub { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

.hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .hero-title { font-size: 36px; }
  .big-logo { width: 70px; height: 70px; }
}

/* Avatar rings (shared) */
.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--neon);
  animation: rotateSlow linear infinite;
}
.avatar-ring.r1 { inset: 0; opacity: .3; animation-duration: 12s; }
.avatar-ring.r2 { inset: 10px; opacity: .2; animation-duration: 20s; animation-direction: reverse; }
.avatar-ring.r3 { inset: 20px; opacity: .15; animation-duration: 30s; }
.avatar-core {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.6));
}
