/* =====================================================
   ESCUDO TUCUJU — Corporate Sober v2
   ===================================================== */

:root {
  --bg:           #ffffff;
  --bg-surface:   #f5f5f5;
  --bg-card:      #ffffff;
  --bg-muted:     #efefef;

  --navy:         #0a0a0a;
  --navy-mid:     #111111;
  --navy-light:   #1a1a1a;

  --accent:       #0891b2;
  --accent-hover: #0e7490;
  --accent-light: #06b6d4;

  --text:         #0a0a0a;
  --text-muted:   #4b5563;
  --text-dim:     #9ca3af;

  --border:       #e5e5e5;
  --border-mid:   #d1d1d1;
  --border-blue:  rgba(8,145,178,0.25);

  --red:          #dc2626;
  --green:        #16a34a;

  --r:    10px;
  --r-sm:  6px;
  --r-lg: 16px;

  --font: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section { padding: 72px 0; }
.section--dark { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--muted { background: var(--bg-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* =====================================================
   DARK THEME
   ===================================================== */

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; border-radius: var(--r-sm); padding: 12px 24px; transition: all 0.18s ease; white-space: nowrap; letter-spacing: -0.01em; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(8,145,178,0.3); }
.btn-ghost { color: var(--text-muted); border: 1px solid var(--border-mid); }
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }
.btn-sm { padding: 8px 16px; font-size: 0.825rem; }
.btn-full { width: 100%; justify-content: center; }

/* TAGS */
.section-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: rgba(8,145,178,0.07); border: 1px solid rgba(8,145,178,0.18); border-radius: 4px; padding: 3px 10px; margin-bottom: 12px; }

/* =====================================================
   NAV
   ===================================================== */
.nav-wrapper { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; height: 62px; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-img { display: block; height: 54px; width: auto; }
.footer-brand .logo-img { height: 36px; }
.logo-text { font-size: 1.2rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.logo-text em { font-style: normal; font-weight: 700; color: #0e0536; }
.logo-text strong { font-weight: 800; color: #095c27; }
.nav-links { display: flex; align-items: center; gap: 24px; flex: 1; }
.nav-mobile-cta { display: none; }
.nav-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }

/* MEGA MENU */
.has-dropdown { position: relative; padding: 20px 0; }
.mega-menu { 
  position: absolute; 
  top: 100%; 
  left: 50%; 
  transform: translateX(-50%) translateY(10px); 
  width: 650px; 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: var(--r-md); 
  box-shadow: 0 16px 40px rgba(0,0,0,0.08); 
  opacity: 0; 
  visibility: hidden; 
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1); 
  padding: 32px; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  pointer-events: none;
  z-index: 1000;
  text-align: left;
}
.has-dropdown:hover .mega-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: translateX(-50%) translateY(0); 
  pointer-events: auto;
}
.mega-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; background: transparent;
}
.mega-menu-col h5 { 
  font-size: 0.72rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  color: var(--text-muted); 
  margin-bottom: 20px; 
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.mega-menu-list { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.mega-menu-list li { margin: 0; padding: 0; }
.mega-link { display: flex !important; flex-direction: column; gap: 4px; padding: 10px !important; border-radius: 8px; transition: background 0.15s; margin: -10px; text-decoration: none; }
.mega-link:hover { background: var(--bg-surface); }
.mega-link-title { font-size: 0.9rem !important; font-weight: 700; color: var(--text) !important; display: flex; align-items: center; gap: 8px; transition: color 0.15s; }
.mega-link-title svg { color: var(--accent); width: 14px; height: 14px; }
.mega-link:hover .mega-link-title { color: var(--accent) !important; }
.mega-link-desc { font-size: 0.78rem !important; color: var(--text-muted) !important; line-height: 1.5; font-weight: 400; }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; width: 38px; height: 38px; border-radius: var(--r-sm); transition: background 0.15s; }
.nav-toggle:hover { background: var(--bg-surface); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 98; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }



/* =====================================================
   HERO
   ===================================================== */
.hero { padding: 96px 0 64px; background: var(--bg); border-bottom: 1px solid var(--border); }
.hero-grid { display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); background: var(--bg-surface); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 4px; padding: 5px 12px; margin-bottom: 24px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title { font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 20px; color: var(--text); }
.hero-title em { font-style: normal; color: var(--red); }
.hero-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* THREAT PANEL — mantém dark para contraste */
.threat-panel { background: var(--navy); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); overflow: hidden; }
.tp-header { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07); }
.tp-status { display: flex; align-items: center; gap: 8px; font-size: 0.71rem; color: #f0f4fa; font-family: var(--mono); }
.tp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tp-dot--red { background: var(--red); animation: pulse 1.5s infinite; }
.tp-date { font-size: 0.68rem; font-family: var(--mono); color: rgba(255,255,255,0.35); }

.tp-main-stat { padding: 22px 20px 18px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.tp-ms-label { font-size: 0.68rem; color: #f0f4fa; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 8px; }
.tp-ms-value { display: flex; align-items: baseline; gap: 6px; }
.tp-counter { font-size: 3rem; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.tp-ms-unit { font-size: 1.5rem; font-weight: 700; color: #67e8f9; }
.tp-ms-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 6px; }
.tp-ms-sub strong { color: rgba(255,255,255,0.85); }

.tp-grid { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.07); }
.tp-metric { padding: 15px 20px; border-right: 1px solid rgba(255,255,255,0.07); }
.tp-metric:nth-child(2), .tp-metric:nth-child(4) { border-right: none; }
.tp-metric:nth-child(3), .tp-metric:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
.tp-metric-val { display: flex; align-items: baseline; gap: 2px; font-size: 1.6rem; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: 4px; }
.tp-metric-val .tp-counter { font-size: 1.6rem; }
.tp-metric-val--accent { color: #67e8f9; }
.tp-metric-suf { font-size: 1rem; font-weight: 700; color: #67e8f9; }
.tp-metric-label { font-size: 0.71rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

.tp-bar-section { padding: 15px 20px; }
.tp-bar-label { font-size: 0.66rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-bottom: 10px; }
.tp-bar-track { background: rgba(255,255,255,0.07); border-radius: 3px; height: 26px; overflow: hidden; margin-bottom: 6px; }
.tp-bar-fill { height: 100%; width: 0; background: #0891b2; border-radius: 3px; display: flex; align-items: center; padding: 0 10px; transition: width 1.5s cubic-bezier(0.25,1,0.5,1); }
.tp-bar-fill--dim { background: rgba(255,255,255,0.1); }
.tp-bar-text { font-size: 0.67rem; font-weight: 600; color: rgba(255,255,255,0.8); white-space: nowrap; font-family: var(--mono); }
.tp-bar-growth { font-size: 0.68rem; font-family: var(--mono); color: #86efac; margin-top: 6px; }

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip { background: var(--navy); border-top: none; border-bottom: none; }
.stats-strip-inner { display: flex; align-items: stretch; }
.ss-item { flex: 1; padding: 22px 28px; display: flex; flex-direction: column; gap: 4px; }
.ss-div { width: 1px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.ss-val { font-size: 1.7rem; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.ss-val small { font-size: 0.85rem; font-weight: 700; color: #67e8f9; margin-left: 2px; }
.ss-label { font-size: 0.74rem; color: rgba(255,255,255,0.5); }

/* =====================================================
   THREAT SECTION
   ===================================================== */
.section-eyebrow { margin-bottom: 32px; }
.section-eyebrow--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 32px; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-top: 6px; color: var(--text); }
.section-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 380px; }

.threat-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }

.threat-featured { background: var(--navy); padding: 36px; display: flex; flex-direction: column; }
.tf-source { display: none; }
.tf-stat { font-size: 5.5rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: #fff; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.tf-stat span { font-size: 2.5rem; color: #67e8f9; }
.tf-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; line-height: 1.35; color: #fff; }
.tf-body { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; flex: 1; }

.tf-compare { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.tf-compare-item { display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; gap: 10px; }
.tf-compare-year { font-size: 0.72rem; font-family: var(--mono); color: rgba(255,255,255,0.4); font-weight: 600; }
.tf-compare-track { background: rgba(255,255,255,0.08); border-radius: 3px; height: 8px; overflow: hidden; }
.tf-compare-bar { height: 100%; width: 0; background: rgba(255,255,255,0.2); border-radius: 3px; transition: width 1.5s cubic-bezier(0.25,1,0.5,1); }
.tf-compare-bar--accent { background: #2563eb; }
.tf-compare-val { font-size: 0.8rem; font-weight: 700; font-family: var(--mono); text-align: right; color: #fff; }
.tf-footer { font-size: 0.67rem; color: rgba(255,255,255,0.3); }

.threat-side-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.tsg-card { background: var(--bg-card); border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px; display: flex; flex-direction: column; gap: 5px; }
.tsg-card:nth-child(2) { border-right: none; }
.tsg-card:nth-child(3), .tsg-card:nth-child(4) { border-bottom: none; }
.tsg-card:nth-child(odd) { border-right: 1px solid var(--border); }
.tsg-icon { color: var(--accent); margin-bottom: 4px; }
.tsg-stat { font-size: 1.9rem; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; line-height: 1; }
.tsg-stat span { font-size: 1rem; color: var(--accent); font-weight: 700; }
.tsg-label { font-size: 0.82rem; color: var(--text); font-weight: 600; line-height: 1.4; }
.tsg-note { font-size: 0.72rem; color: var(--text-muted); }
.tsg-source { display: none; }

/* BRASIL ROW */
.brasil-row { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 2px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 20px; }
.brasil-left { padding: 36px; display: flex; flex-direction: column; gap: 16px; border-right: 1px solid var(--border); background: var(--bg-surface); }
.brasil-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.68rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }
.brasil-left h3 { font-size: 1.4rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; color: var(--text); }
.brasil-left p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.brasil-callout { display: flex; gap: 10px; background: #fff5f5; border: 1px solid #fecaca; border-left: 4px solid var(--red); border-radius: var(--r-sm); padding: 14px; font-size: 0.8rem; color: #7f1d1d; line-height: 1.55; }
.brasil-callout svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }

.brasil-right { padding: 36px; background: var(--bg-card); }
.brasil-chart-title { font-size: 0.72rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 6px; }
.brasil-chart-note { font-size: 0.76rem; color: var(--text); line-height: 1.5; margin-bottom: 20px; }
.brasil-bars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.bb-row { display: grid; grid-template-columns: 24px 70px 1fr 36px; align-items: center; gap: 10px; }
.bb-flag { font-size: 1rem; line-height: 1; }
.bb-name { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.bb-track { background: var(--bg-muted); border-radius: 3px; height: 8px; overflow: hidden; }
.bb-bar { height: 100%; width: 0; background: var(--border-mid); border-radius: 3px; transition: width 1.4s cubic-bezier(0.25,1,0.5,1); }
.bb-bar--br { background: var(--accent); }
.bb-val { font-size: 0.8rem; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; color: var(--text); }

/* SECTORS */
.sectors-block { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 20px; }
.sectors-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 28px; border-bottom: 1px solid var(--border); background: var(--bg-surface); }
.sectors-header h3 { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.sectors-total { font-size: 0.75rem; font-family: var(--mono); color: var(--text-dim); }
.sectors-list { padding: 0; background: var(--bg-card); }
.sl-item { display: grid; grid-template-columns: 48px 1fr 1fr 80px; align-items: center; gap: 16px; padding: 13px 28px; border-bottom: 1px solid var(--border); }
.sl-item:last-child { border-bottom: none; }
.sl-rank { font-size: 0.7rem; font-family: var(--mono); font-weight: 700; color: var(--text-dim); }
.sl-name { font-size: 0.87rem; font-weight: 500; color: var(--text); }
.sl-track { background: var(--bg-muted); border-radius: 3px; height: 6px; overflow: hidden; }
.sl-bar { height: 100%; width: 0; background: var(--accent); border-radius: 3px; transition: width 1.4s cubic-bezier(0.25,1,0.5,1); }
.sl-val { font-size: 0.8rem; font-weight: 600; text-align: right; font-family: var(--mono); color: var(--text-muted); }

/* =====================================================
   HOW ATTACKS HAPPEN
   ===================================================== */
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.how-left h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 14px; margin-top: 6px; }
.how-left p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

.how-access-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.hal-item { display: flex; flex-direction: column; gap: 5px; }
.hal-bar-wrap { display: flex; justify-content: space-between; align-items: center; }
.hal-label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.hal-pct { font-size: 0.8rem; font-weight: 700; font-family: var(--mono); color: var(--text); }
.hal-track { background: var(--bg-muted); border-radius: 3px; height: 6px; overflow: hidden; }
.hal-bar { height: 100%; width: 0; background: var(--accent); border-radius: 3px; transition: width 1.4s cubic-bezier(0.25,1,0.5,1); }
.hal-source { display: none; }

.how-alert { display: flex; gap: 10px; background: #fff5f5; border: 1px solid #fecaca; border-left: 4px solid var(--red); border-radius: var(--r-sm); padding: 14px 16px; font-size: 0.83rem; color: #7f1d1d; line-height: 1.6; margin-top: 24px; }
.how-alert svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ATTACK TIMELINE */
.attack-timeline { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-card); }
.atl-step { display: grid; grid-template-columns: 56px 1fr; border-bottom: 1px solid var(--border); }
.atl-step--last { border-bottom: none; }
.atl-marker { display: flex; flex-direction: column; align-items: center; padding: 20px 0; background: var(--bg-surface); border-right: 1px solid var(--border); }
.atl-num { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.66rem; font-weight: 700; font-family: var(--mono); color: #fff; flex-shrink: 0; }
.atl-line { flex: 1; width: 1px; background: var(--border); margin: 6px auto 0; }
.atl-step--last .atl-marker { justify-content: flex-start; }
.atl-content { padding: 20px 24px; }
.atl-time { font-size: 0.66rem; font-family: var(--mono); color: var(--accent); font-weight: 700; margin-bottom: 4px; }
.atl-content h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.atl-content p { font-size: 0.81rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.atl-tag { display: inline-block; font-size: 0.64rem; font-weight: 700; font-family: var(--mono); color: var(--accent); background: rgba(8,145,178,0.07); border: 1px solid rgba(8,145,178,0.18); border-radius: 3px; padding: 2px 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.atl-tag--red { color: #fff; background: var(--red); border-color: var(--red); }

/* =====================================================
   SERVICES
   ===================================================== */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.svc-featured { background: var(--navy); border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; }
.svc-f-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.svc-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: #67e8f9; }
.svc-icon--lg { width: 48px; height: 48px; }
.svc-f-tag { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #67e8f9; background: rgba(103,232,249,0.1); border: 1px solid rgba(103,232,249,0.2); border-radius: 3px; padding: 3px 10px; }
.svc-featured h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; color: #fff; }
.svc-featured p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.svc-f-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; flex: 1; }
.svc-f-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.65); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); line-height: 1.5; }
.svc-f-list li:last-child { border-bottom: none; }
.svc-f-list li svg { color: #86efac; flex-shrink: 0; margin-top: 2px; }
.svc-featured .btn-primary { background: #fff; color: var(--navy); }
.svc-featured .btn-primary:hover { background: #f0f4fa; }

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.svc-card { background: var(--bg-card); border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: background 0.15s; }
.svc-card:hover { background: var(--bg-surface); }
.svc-card:nth-child(2n) { border-right: none; }
.svc-card:nth-last-child(-n+2) { border-bottom: none; }
.svc-icon { color: var(--accent); background: rgba(8,145,178,0.07); border: 1px solid rgba(8,145,178,0.15); }
.svc-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.svc-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: var(--accent); margin-top: auto; transition: gap 0.15s; }
.svc-link:hover { gap: 8px; }

/* =====================================================
   ABOUT
   ===================================================== */
.about-layout { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.about-left h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 14px; margin-top: 6px; }
.about-left p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.about-card { background: var(--bg-card); border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); padding: 24px; }
.about-card:nth-child(2n) { border-right: none; }
.about-card:nth-last-child(-n+2) { border-bottom: none; }
.about-card-icon { width: 36px; height: 36px; background: rgba(8,145,178,0.07); border: 1px solid rgba(8,145,178,0.15); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 14px; }
.about-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.about-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

.frameworks-bar { background: var(--bg-surface); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--r-lg) var(--r-lg); padding: 16px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fb-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-dim); font-weight: 700; flex-shrink: 0; }
.fb-items { display: flex; gap: 6px; flex-wrap: wrap; }
.fb-items span { font-size: 0.72rem; font-family: var(--mono); font-weight: 600; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-layout { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
.contact-left h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 14px; margin-top: 6px; }
.contact-left p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }

.contact-offers { display: flex; flex-direction: column; margin-bottom: 32px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.co-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--bg-card); }
.co-item:last-child { border-bottom: none; }
.co-icon { width: 26px; height: 26px; background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.co-item strong { display: block; font-size: 0.87rem; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.co-item span { font-size: 0.79rem; color: var(--text-muted); }

.contact-info { display: flex; flex-direction: column; gap: 10px; }
.ci-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--accent); transition: color 0.15s; }
.ci-link:hover { color: var(--accent-hover); }
.ci-location { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); }

/* FORM */
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.label-opt { font-weight: 400; color: var(--text-dim); }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-surface); border: 1px solid var(--border-mid); border-radius: var(--r-sm); color: var(--text); font-size: 0.87rem; padding: 10px 13px; outline: none; transition: border-color 0.18s; appearance: none; -webkit-appearance: none; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: #fff; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239ca3af' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; background-color: var(--bg-surface); }
.form-group select option { background: #fff; }
.form-disclaimer { font-size: 0.7rem; color: var(--text-dim); margin-top: 10px; text-align: center; line-height: 1.55; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--navy); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 240px 1fr; gap: 64px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text em { color: #fff; }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.fn-col { display: flex; flex-direction: column; }
.fn-col h5 { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.fn-col a, .fn-col span { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.15s; padding: 4px 0; display: block; }
.fn-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* MISSAO / ORIGIN */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 400px; gap: 48px; }
  .threat-layout { grid-template-columns: 1fr; }
  .threat-side-grid { grid-template-columns: repeat(4, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { max-width: 600px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-layout { grid-template-columns: 1fr; }
  .brasil-row { grid-template-columns: 1fr; }
  .brasil-left { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .tf-stat { font-size: 4rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .hero { padding: 80px 0 40px; }

  /* Logo */
  .logo-img { height: 44px; }
  .footer-brand .logo-img { height: 30px; }

  /* Nav */
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 62px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 0 18px; gap: 0; z-index: 99;
    max-height: 0; overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
  }
  .nav-links.open { max-height: 400px; padding: 8px 18px 16px; }
  .nav-links.open ~ .nav-overlay { display: block; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 98; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
  .nav-links li a { display: block; font-size: 1rem; font-weight: 500; padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--text); transition: color 0.15s; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-mobile-cta { display: block; padding: 8px 0 4px; border-top: 1px solid var(--border); margin-top: 4px; }
  .nav-mobile-cta a { border-bottom: none !important; color: var(--accent) !important; font-weight: 600 !important; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-phone { display: none; }
  .nav-right { display: none; }

  /* Stats strip */
  .stats-strip-inner { flex-wrap: wrap; }
  .ss-item { min-width: 50%; padding: 18px 20px; }
  .ss-div { display: none; }
  .ss-val { font-size: 1.4rem; }

  /* Threat section */
  .threat-featured { padding: 24px; }
  .tf-stat { font-size: 3.2rem; }
  .threat-side-grid { grid-template-columns: 1fr 1fr; }

  /* Sectors list */
  .sectors-header { padding: 14px 18px; }
  .sl-item { grid-template-columns: 36px 1fr 56px; gap: 10px; padding: 12px 18px; }
  .sl-track { display: none; }

  /* Brasil */
  .brasil-left { padding: 24px; }
  .brasil-right { padding: 24px; }

  /* Services */
  .svc-featured { padding: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-card { border-right: none !important; }
  .about-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .about-card:last-child { border-bottom: none; }

  /* Contact */
  .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
  .footer-inner { gap: 28px; margin-bottom: 28px; padding-bottom: 28px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Misc */
  .section-eyebrow--split { flex-direction: column; gap: 8px; }
  .section-title { font-size: 1.75rem; }
  .how-left h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .hero { padding: 76px 0 32px; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Logo */
  .logo-img { height: 38px; }
  .footer-brand .logo-img { height: 26px; }
  .logo-text { font-size: 1rem; }

  /* Stats strip — empilha em tela muito pequena */
  .ss-item { min-width: 100%; padding: 14px 16px; }

  /* Threat section */
  .threat-side-grid { grid-template-columns: 1fr 1fr; }
  .tsg-card { padding: 16px; }
  .tsg-stat { font-size: 1.5rem; }

  /* Sectors */
  .sl-item { grid-template-columns: 28px 1fr 48px; gap: 8px; padding: 10px 16px; }
  .sl-rank { font-size: 0.65rem; }

  /* Services */
  .svc-featured { padding: 20px; }
  .svc-card { padding: 18px; }

  /* Contact */
  .contact-form { padding: 18px; }
  .contact-offers { margin-bottom: 24px; }

  /* Brasil */
  .brasil-left { padding: 18px; }
  .brasil-right { padding: 18px; }

  /* Footer */
  .footer-nav { grid-template-columns: 1fr; }
  .footer-nav .fn-col { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-nav .fn-col:last-child { border-bottom: none; padding-bottom: 0; }

  /* Titles */
  .section-title { font-size: 1.55rem; }
  .about-left h2, .contact-left h2 { font-size: 1.55rem; }
}
