*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; scroll-padding-top: 84px; }
body { font-family: 'Geist', sans-serif; background: #080A0E; color: #EAEDF2; overflow: auto; }

/* ── Nav ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(8,10,14,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(37,44,58,0.8);
}
.nav-logo { display: flex; align-items: center; gap: 11px; cursor: pointer; flex-shrink: 0; text-decoration: none; }
.logo-word { overflow: visible; }
.logo-word-build { font-family: 'Geist', 'Arial Black', 'Helvetica Neue', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: 0.04em; fill: #EAEDF2; }
.logo-word-sub   { font-family: 'Geist', 'Helvetica Neue', Arial, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.24em; fill: #7A84A0; }
.nav-links { display: flex; gap: 2px; }
.nav-link { font-size: 14px; color: #8A94A6; padding: 6px 14px; border-radius: 5px; cursor: pointer; text-decoration: none; transition: color 0.18s; }
.nav-link.active { color: #E5B85A; background: rgba(200,150,60,0.08); }
.nav-link:hover { color: #EAEDF2; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-lang { font-size: 12px; font-weight: 600; color: #7A84A0; text-decoration: none; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 5px; border: 1px solid rgba(255,255,255,0.07); transition: color 0.18s; }
.nav-lang:hover { color: #8A94A6; }
.nav-primary { background: #C8963C; color: #080A0E; border: none; font-family: inherit; font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 6px; cursor: pointer; letter-spacing: -0.01em; transition: transform 0.15s, box-shadow 0.15s; text-decoration: none; display: inline-block; }
.nav-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,150,60,0.30); }
.nav-mobile-lang, .nav-mobile-cta { display: none; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 10px; background: none; border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: #EAEDF2; border-radius: 2px; transition: transform 0.22s, opacity 0.22s; }
.site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Eyebrow ── */
.ey-icon { display: inline-flex; align-items: center; flex-shrink: 0; color: #C8963C; }
.ey-icon svg { display: block; }
.ey-text  { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #C8963C; }
.eyebrow  { display: flex; align-items: center; gap: 12px; }

/* ── Hero ── */
.hero { width: 100%; height: 100vh; background: #080A0E; position: relative; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: linear-gradient(rgba(37,44,58,0.30) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,44,58,0.30) 1px, transparent 1px);
  background-size: 100px 100px;
}
#map-canvas  { position: absolute; top: 0; right: 0; width: 80%; height: 100%; z-index: 1; pointer-events: none; }
#radar-svg   { position: absolute; top: 0; right: 0; width: 80%; height: 100%; z-index: 3; pointer-events: none; overflow: visible; }
.map-edge-fade-left {
  position: absolute; top: 0; left: 20%; width: 18%; height: 100%;
  z-index: 4; pointer-events: none;
  background: linear-gradient(90deg, #080A0E 0%, rgba(8,10,14,0.85) 35%, rgba(8,10,14,0.40) 65%, rgba(8,10,14,0) 100%);
}
.hero-content { position: absolute; top: 50%; left: 96px; transform: translateY(-50%); z-index: 10; max-width: 640px; width: 42%; min-width: 420px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-h1 { font-weight: 800; font-size: clamp(44px,5vw,88px); line-height: 1.0; letter-spacing: -0.045em; color: #FFFFFF; margin-bottom: 24px; min-height: 4em; }
.hero-h1 .gold { color: #C8963C; }
.typed-word  { display: inline-block; min-width: 0.6em; white-space: nowrap; }
.typed-caret { display: inline-block; width: 3px; height: 0.88em; background: #C8963C; margin-left: 4px; vertical-align: -0.06em; animation: caretBlink 1s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.hero-sub { font-size: clamp(15px,1.2vw,18px); color: #8A94A6; line-height: 1.65; margin-bottom: 36px; letter-spacing: -0.01em; max-width: 540px; }
.cta-row  { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-cta { background: #C8963C; color: #080A0E; border: none; font-family: inherit; font-size: 15px; font-weight: 700; padding: 16px 36px; border-radius: 7px; cursor: pointer; box-shadow: 0 0 40px rgba(200,150,60,0.30), 0 4px 16px rgba(200,150,60,0.18); letter-spacing: -0.01em; text-decoration: none; display: inline-block; }
.inline-ticker { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #8A94A6; }
.ticker-dot  { width: 7px; height: 7px; border-radius: 50%; background: #34C77A; flex-shrink: 0; animation: tickerPulse 1.4s ease-in-out infinite; }
.ticker-name { color: #EAEDF2; transition: opacity 0.3s; }
@keyframes tickerPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── Radar animations ── */
.cg-active .rr { transform-box: fill-box; transform-origin: center; }
.cg-active .rr1 { animation: ringGo 3.6s ease-out 0.00s 1 forwards; }
.cg-active .rr2 { animation: ringGo 3.6s ease-out 0.90s 1 forwards; }
.cg-active .rr3 { animation: ringGo 3.6s ease-out 1.80s 1 forwards; }
@keyframes ringGo { 0% { transform: scale(0.05); opacity: 0.9; } 100% { transform: scale(1); opacity: 0; } }
.cg-active .cdot  { transform-box: fill-box; transform-origin: center; animation: dotLife 4s ease-out 0s 1 forwards; }
@keyframes dotLife {
  0%   { opacity: 0.5; transform: scale(0.3); }
  8%   { opacity: 1;   transform: scale(1);   }
  75%  { opacity: 1;   transform: scale(1);   }
  100% { opacity: 0.5; transform: scale(0.8); }
}
.cg-active   .clabel { animation: labelLife 4s ease-out 0s 1 forwards; }
@keyframes labelLife {
  0%   { opacity: 0; transform: translateY(4px); }
  14%  { opacity: 1; transform: translateY(0);   }
  76%  { opacity: 1; transform: translateY(0);   }
  100% { opacity: 0; transform: translateY(0);   }
}
.cg-inactive .cdot   { opacity: 0.40; }
.cg-inactive .clabel,
.cg-inactive .rr     { display: none; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1500;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.35);
  text-decoration: none; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 32px rgba(37,211,102,0.50), 0 4px 12px rgba(0,0,0,0.40); }
.wa-float::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.45); animation: waPulse 2.2s ease-out infinite; pointer-events: none; }
@keyframes waPulse { 0% { transform: scale(0.9); opacity: 0.7; } 80%,100% { transform: scale(1.4); opacity: 0; } }
.wa-float svg { width: 30px; height: 30px; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay:  80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ── Section containers ── */
.bi-container { max-width: 1280px; margin: 0 auto; }

/* ── Differentials ── */
.diff-section { background: #0F1218; border-top: 1px solid #1E2430; border-bottom: 1px solid #1E2430; padding: 120px 48px; position: relative; overflow: hidden; }
.diff-glow { position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(200,150,60,0.06) 0%, transparent 70%); filter: blur(40px); pointer-events: none; }
.diff-header { max-width: 880px; margin-bottom: 88px; position: relative; }
.diff-italic { font-size: 15px; color: #8A94A6; font-style: italic; margin-bottom: 14px; letter-spacing: -0.005em; position: relative; z-index: 1; }
.diff-h2 { font-weight: 800; font-size: clamp(36px,4.5vw,64px); line-height: 1.05; letter-spacing: -0.045em; color: #FFFFFF; position: relative; z-index: 1; max-width: 880px; }
.diff-h2 .gold { color: #C8963C; }
.diff-lead { font-size: 17px; color: #8A94A6; line-height: 1.65; margin-top: 24px; max-width: 620px; letter-spacing: -0.01em; }
.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.diff-card { display: flex; flex-direction: column; align-items: flex-start; }
.diff-icon { width: 46px; height: 46px; border-radius: 50%; background: #C8963C; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; box-shadow: 0 6px 18px rgba(200,150,60,0.22), inset 0 0 0 1px rgba(255,255,255,0.08); flex-shrink: 0; }
.diff-icon svg { display: block; }
.diff-card h3 { font-weight: 700; font-size: 19px; color: #EAEDF2; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.2; }
.diff-card p  { font-size: 14px; color: #8A94A6; line-height: 1.6; letter-spacing: -0.005em; }

/* ── Services ── */
.services-section { background: #1A1D26; padding: 112px 48px; border-top: 1px solid #252C3A; border-bottom: 1px solid #252C3A; }
.services-header { margin-bottom: 72px; max-width: 640px; }
.services-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.services-h2 { font-weight: 800; font-size: clamp(28px,4vw,56px); line-height: 1.04; letter-spacing: -0.04em; color: #FFFFFF; margin-bottom: 20px; }
.services-lead { font-size: 18px; color: #8A94A6; line-height: 1.65; letter-spacing: -0.01em; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #252C3A; border: 1px solid #252C3A; border-radius: 14px; overflow: hidden; }
.service-card { background: #1A1D26; padding: 32px; transition: background 0.2s ease; }
.service-card:hover { background: #1E2430; }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(200,150,60,0.08); border: 1px solid rgba(200,150,60,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { font-size: 16px; font-weight: 600; color: #EAEDF2; margin-bottom: 10px; letter-spacing: -0.015em; }
.service-card p  { font-size: 14px; color: #8A94A6; line-height: 1.6; margin-bottom: 18px; letter-spacing: -0.005em; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.service-tag  { font-size: 11px; color: #7A84A0; background: #161B24; border: 1px solid #252C3A; border-radius: 999px; padding: 2px 10px; }

/* ── Stats / Mercados ── */
.stats-section { background: #080A0E; padding: 112px 48px; }
.stats-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 72px; }
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: #1E2430; border: 1px solid #1E2430; border-radius: 14px; overflow: hidden; margin-bottom: 96px; }
.stat-card  { background: #080A0E; padding: 32px 24px; }
.stat-num   { font-family: 'Geist Mono', monospace; font-size: clamp(28px,3vw,42px); font-weight: 500; color: #E5B85A; letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; white-space: nowrap; }
.stat-label { font-size: 14px; font-weight: 600; color: #EAEDF2; margin-bottom: 4px; letter-spacing: -0.01em; }
.stat-sub   { font-size: 13px; color: #9BA4B8; line-height: 1.45; }
.markets-h2 { font-weight: 800; font-size: clamp(28px,3.5vw,48px); line-height: 1.04; letter-spacing: -0.04em; color: #FFFFFF; margin-bottom: 48px; }
.markets-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.market-card { background: #0F1218; border: 1px solid #252C3A; border-radius: 12px; padding: 24px 22px; box-shadow: 0 1px 3px rgba(0,0,0,0.5); transition: border-color 0.2s; display: flex; flex-direction: column; }
.market-card:hover { border-color: #3A4560; }
.market-top  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.market-name { font-size: 17px; font-weight: 700; color: #EAEDF2; letter-spacing: -0.025em; line-height: 1.15; }
.market-dr   { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: #C8963C; background: rgba(200,150,60,0.10); border: 1px solid rgba(200,150,60,0.25); border-radius: 4px; padding: 3px 7px; font-weight: 500; white-space: nowrap; }
.market-desc { font-size: 13px; color: #8A94A6; line-height: 1.6; letter-spacing: -0.005em; }

/* ── Process ── */
.process-section { background: #0F1218; padding: 112px 48px; border-top: 1px solid #1E2430; border-bottom: 1px solid #1E2430; }
.process-eyebrow  { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.process-intro    { margin-bottom: 88px; }
.process-h2 { font-weight: 800; font-size: clamp(28px,3.8vw,56px); line-height: 1.04; letter-spacing: -0.04em; color: #FFFFFF; }
.process-h2 .gold { color: #C8963C; }
.process-timeline { position: relative; }
.process-timeline::before { content: ''; position: absolute; left: 30px; top: 60px; bottom: 60px; width: 1px; background: linear-gradient(180deg, #C8963C 0%, rgba(200,150,60,0.08) 100%); }
.process-step { display: grid; grid-template-columns: auto 1fr; gap: 36px; position: relative; margin-bottom: 44px; }
.step-circle { width: 60px; height: 60px; border-radius: 50%; background: #0F1218; border: 1px solid #252C3A; display: flex; align-items: center; justify-content: center; z-index: 1; position: relative; flex-shrink: 0; }
.process-step:first-child .step-circle { background: #C8963C; border: none; }
.process-step:first-child .step-num { color: #080A0E; }
.step-num   { font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 500; color: #7A84A0; }
.step-circle.reveal { opacity: 0; transform: scale(0.4); transition-property: opacity, transform; transition-duration: 0.5s; transition-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
.step-circle.reveal.visible { opacity: 1; transform: scale(1); }
.step-body  { padding-top: 14px; }
.step-body h3 { font-size: 20px; font-weight: 700; color: #EAEDF2; margin-bottom: 10px; letter-spacing: -0.02em; }
.step-body p  { font-size: 15px; color: #8A94A6; line-height: 1.65; margin-bottom: 14px; letter-spacing: -0.005em; max-width: 660px; }
.step-badge { display: inline-flex; font-family: 'Geist Mono', monospace; font-size: 11px; color: #C8963C; background: rgba(200,150,60,0.08); border: 1px solid rgba(200,150,60,0.20); border-radius: 5px; padding: 5px 11px; font-weight: 500; }

/* ── CTA / Contato ── */
.cta-section { background: #080A0E; padding: 112px 48px; position: relative; overflow: hidden; }
.cta-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(37,44,58,0.40) 1px, transparent 1px), linear-gradient(90deg, rgba(37,44,58,0.40) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 100%); pointer-events: none; }
.cta-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(200,150,60,0.08) 0%, transparent 70%); filter: blur(60px); pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; position: relative; }
.cta-copy .eyebrow { margin-bottom: 24px; }
.cta-h2 { font-weight: 800; font-size: clamp(28px,4.5vw,64px); line-height: 1.0; letter-spacing: -0.045em; color: #FFFFFF; margin-bottom: 24px; }
.cta-h2 .gold { color: #C8963C; }
.cta-desc { font-size: 17px; color: #8A94A6; line-height: 1.65; margin-bottom: 32px; letter-spacing: -0.01em; }
.cta-checks { list-style: none; }
.cta-check  { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(52,199,122,0.12); border: 1px solid rgba(52,199,122,0.30); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-check span { font-size: 15px; color: #8A94A6; letter-spacing: -0.005em; }
.form-card  { background: #0F1218; border: 1px solid #252C3A; border-radius: 14px; padding: 36px; box-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 16px 40px rgba(0,0,0,0.30); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: #8A94A6; margin-bottom: 7px; letter-spacing: 0.01em; }
.form-input { width: 100%; background: #161B24; border: 1px solid #252C3A; border-radius: 8px; color: #EAEDF2; font-family: 'Geist', sans-serif; font-size: 14px; letter-spacing: -0.005em; padding: 12px 14px; display: block; box-sizing: border-box; transition: border-color 0.18s, box-shadow 0.18s; outline: none; }
.form-input::placeholder { color: #7A84A0; }
select.form-input { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A84A0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; appearance: none; }
select.form-input option { background: #161B24; }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; background: #C8963C; color: #080A0E; border: none; font-family: 'Geist', sans-serif; font-size: 15px; font-weight: 700; padding: 15px; border-radius: 7px; cursor: pointer; letter-spacing: -0.01em; box-shadow: 0 0 30px rgba(200,150,60,0.25), 0 4px 16px rgba(200,150,60,0.15); transition: transform 0.15s, box-shadow 0.15s; }
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 0 40px rgba(200,150,60,0.35), 0 6px 20px rgba(200,150,60,0.20); }
[hidden] { display: none !important; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 44px 0; }
.form-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(52,199,122,0.12); border: 1px solid rgba(52,199,122,0.30); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success-title { font-weight: 700; font-size: 22px; color: #EAEDF2; margin-bottom: 8px; letter-spacing: -0.02em; }
.form-success-sub   { font-size: 14px; color: #8A94A6; }

/* ── FAQ ── */
.faq-section { background: #0F1218; padding: 112px 48px; border-top: 1px solid #1E2430; }
.faq-header  { max-width: 640px; margin-bottom: 64px; }
.faq-h2 { font-weight: 800; font-size: clamp(28px,3.5vw,48px); line-height: 1.04; letter-spacing: -0.04em; color: #FFFFFF; margin-bottom: 16px; }
.faq-lead { font-size: 17px; color: #8A94A6; line-height: 1.6; letter-spacing: -0.01em; }
.faq-list { max-width: 820px; }
details.faq-item { border-bottom: 1px solid #1E2430; }
details.faq-item:first-child { border-top: 1px solid #1E2430; }
summary.faq-q { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-size: 17px; font-weight: 600; color: #EAEDF2; letter-spacing: -0.015em; user-select: none; }
summary.faq-q::-webkit-details-marker { display: none; }
.faq-q-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1px solid #252C3A; display: flex; align-items: center; justify-content: center; transition: background 0.18s, border-color 0.18s; }
details[open] .faq-q-icon { background: rgba(200,150,60,0.12); border-color: rgba(200,150,60,0.35); }
.faq-q-icon svg { display: block; transition: transform 0.25s; }
details[open] .faq-q-icon svg { transform: rotate(45deg); }
.faq-a { padding: 0 0 22px; font-size: 15px; color: #8A94A6; line-height: 1.7; letter-spacing: -0.005em; max-width: 720px; }

/* ── Footer ── */
.site-footer { background: #050608; border-top: 1px solid #1E2430; padding: 80px 48px 36px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; color: #7A84A0; line-height: 1.65; max-width: 320px; margin: 20px 0 24px; letter-spacing: -0.005em; }
.footer-linkedin { width: 36px; height: 36px; border-radius: 7px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.footer-linkedin span { font-size: 12px; font-weight: 700; color: #7A84A0; }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #7A84A0; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link  { font-size: 14px; color: #7A84A0; text-decoration: none; letter-spacing: -0.005em; transition: color 0.18s; }
.footer-link:hover { color: #8A94A6; }
.footer-bottom { padding-top: 28px; border-top: 1px solid #1A1D26; text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.footer-copy   { font-size: 12px; color: #7A84A0; letter-spacing: -0.005em; }
.footer-logo   { display: flex; align-items: center; gap: 11px; text-decoration: none; }

/* ── Responsive ── */
@media (max-height: 820px) and (min-width: 901px) {
  /* Viewports curtos (notebooks com pouca altura útil, zoom do navegador, DevTools
     dockado): a centralização vertical absoluta pode empurrar o topo do hero-content
     para trás do .site-nav fixo. Mesmo tratamento do breakpoint mobile (padding-top
     fixo em vez de top:50%+translateY), mantendo a posição horizontal (left:96px). */
  .hero-content { position: relative; top: auto; transform: none; padding-top: 112px; }
}

@media (max-width: 1100px) {
  .site-nav { padding: 0 32px; }
  .hero-content { left: 64px; }
  .diff-section, .services-section, .stats-section, .process-section, .cta-section, .faq-section { padding-left: 32px; padding-right: 32px; }
  .diff-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .markets-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .cta-grid { gap: 56px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-actions { display: none; }
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 4px; padding: 14px 20px 20px;
    background: rgba(8,10,14,0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(37,44,58,0.8);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  }
  .site-nav.nav-open .nav-links { display: flex; }
  .nav-links .nav-link { padding: 13px 14px; font-size: 16px; border-radius: 8px; }
  .nav-mobile-lang {
    display: block; margin-top: 6px; padding: 13px 14px; font-size: 14px;
    color: #8A94A6; text-decoration: none; border-top: 1px solid rgba(37,44,58,0.8);
  }
  .nav-mobile-cta {
    display: block; margin-top: 10px; padding: 14px; text-align: center;
    background: #C8963C; color: #080A0E; font-weight: 700; font-size: 15px;
    border-radius: 8px; text-decoration: none;
  }
  .hero-content { position: relative; top: auto; transform: none; padding: 100px 24px 0; max-width: 100%; width: 100%; min-width: 0; left: auto; }
  #map-canvas, #radar-svg { width: 100%; opacity: 0.55; }
  .map-edge-fade-left { display: none; }
  .hero-h1 { font-size: clamp(36px,8vw,60px); min-height: 4.2em; }
  .hero-sub { font-size: 15px; }
  .cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .diff-section { padding: 64px 20px; }
  .diff-header { margin-bottom: 48px; }
  .diff-italic { font-size: 13px; }
  .diff-h2 { font-size: clamp(28px,7vw,40px); }
  .diff-lead { font-size: 15px; }
  .diff-grid { grid-template-columns: 1fr; gap: 24px; }
  .diff-card h3 { font-size: 18px; }
  .services-section { padding: 60px 20px; }
  .services-header { margin-bottom: 40px; }
  .services-lead { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; background: transparent; border: none; border-radius: 0; overflow: visible; }
  .service-card { background: #1A1D26; border: 1px solid #252C3A; border-radius: 14px; padding: 20px; }
  .service-card h3 { font-size: 15px; }
  .service-card p  { font-size: 13px; }
  .stats-section { padding: 60px 20px; }
  .stats-eyebrow { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-bottom: 60px; }
  .stats-grid > .stat-card:last-child { grid-column: 1 / -1; }
  .stat-card  { padding: 20px; }
  .stat-num   { font-size: clamp(22px,5vw,30px); }
  .stat-label { font-size: 13px; }
  .stat-sub   { font-size: 11px; }
  .markets-grid { grid-template-columns: 1fr; gap: 12px; }
  .market-name  { font-size: 18px; }
  .market-desc  { font-size: 14px; }
  .process-section { padding: 60px 20px; }
  .process-intro { margin-bottom: 48px; }
  .process-timeline::before { display: none; }
  .process-step { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .step-circle { width: 48px; height: 48px; }
  .step-body h3 { font-size: 17px; }
  .step-body p  { font-size: 14px; }
  .cta-section { padding: 60px 20px; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-bg-glow { width: 400px; height: 250px; }
  .cta-h2  { font-size: clamp(28px,7vw,48px); }
  .cta-desc { font-size: 16px; }
  .cta-check span { font-size: 14px; }
  .form-card { padding: 24px; }
  .form-row  { grid-template-columns: 1fr; }
  .form-submit { font-size: 14px; padding: 13px; }
  .faq-section { padding: 60px 20px; }
  .faq-h2  { font-size: clamp(26px,6vw,40px); }
  .faq-lead { font-size: 15px; }
  summary.faq-q { font-size: 15px; }
  .faq-a { font-size: 14px; }
  .site-footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .site-nav { padding: 0 16px; }
  .hero-content { padding: 88px 16px 0; }
  .hero-sub { font-size: 14px; }
  .diff-section, .services-section, .stats-section, .process-section, .cta-section, .faq-section { padding-left: 16px; padding-right: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > .stat-card:last-child { grid-column: auto; }
  .stat-card { padding: 18px; }
  .form-card { padding: 18px; }
  .site-footer { padding: 32px 16px 20px; }
  .wa-float { width: 48px; height: 48px; right: 12px; bottom: 12px; }
  .wa-float svg { width: 22px; height: 22px; }
}

:focus-visible{outline:2px solid #E5B85A;outline-offset:2px;border-radius:4px;}
.form-input:focus-visible{outline:2px solid #E5B85A;outline-offset:2px;}

@media (prefers-reduced-motion: reduce) {
  .typed-caret { animation: none; opacity: 1; }
  .ticker-dot  { animation: none; opacity: 1; }
  .cg-active .rr1, .cg-active .rr2, .cg-active .rr3 { animation: none; opacity: 0; }
  .cg-active .cdot   { animation: none; opacity: 1; transform: scale(1); }
  .cg-active .clabel { animation: none; opacity: 1; transform: translateY(0); }
  .wa-float::before { animation: none; opacity: 0; }
  .reveal, .reveal.visible { transition: none; opacity: 1; transform: none; }
}

.hp-field{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden;}
.form-error{ display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 14px 16px; border-radius: 8px; background: rgba(229,120,106,0.10); border: 1px solid rgba(229,120,106,0.30); color: #E5786A; font-size: 14px; line-height: 1.5; margin-top: 14px; }
