/* ===========================
   VARIÁVEIS GERAIS
=========================== */

:root {
  --primary: #0b1f3b;
  --primary-soft: #15294a;
  --accent: #ffb347;
  --accent-soft: rgba(255, 179, 71, 0.15);
  --bg: #050814;
  --bg-soft: #0b1020;
  --card: rgba(18, 26, 52, 0.9);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f7ff;
  --muted: #a4acc7;
  --danger: #ff6b6b;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.28s ease-out;
}

/* ===========================
   RESET E BASE
=========================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at top, #1b2a4a 0, #050814 55%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* === BANNER DE COOKIES === */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  border-top: 2px solid #00aaff;
}
.cookie-banner a {
  color: #00aaff;
  text-decoration: underline;
}
.cookie-banner button {
  background: #00aaff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

/* ===========================
   HEADER
=========================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 8, 20, 0.92), rgba(5, 8, 20, 0.75));
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrap img {
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
}

.logo-text span:first-child {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

nav a {
  position: relative;
  padding-bottom: 2px;
  color: var(--muted);
  transition: color var(--transition-fast);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffd56b);
  transition: width var(--transition-med);
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-select {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(10, 16, 35, 0.9);
  color: var(--muted);
  font-size: 0.8rem;
  outline: none;
}

.btn-ghost {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  font-size: 0.8rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ===========================
   MAIN LAYOUT
=========================== */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 18px 60px;
}

section {
  padding: 60px 0;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: radial-gradient(circle at top left, rgba(255, 179, 71, 0.18), transparent 55%);
  z-index: -1;
}

.section-header {
  margin-bottom: 26px;
  max-width: 620px;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 6px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ===========================
   HERO
=========================== */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
}

/* === HERO BACKGROUND IMAGE === */

.hero {
  position: relative;
  background-image: url("../assets/hero-bg.jpg"); /* caminho da imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.hero > div {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(10, 18, 40, 0.9);
  border: 1px solid var(--border-soft);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #4cffb3, #0f9960);
  box-shadow: 0 0 10px rgba(76, 255, 179, 0.7);
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-highlight {
  background: linear-gradient(90deg, #ffd56b, #ffb347);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(10, 18, 40, 0.9);
  border: 1px solid var(--border-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1b1300;
  background: linear-gradient(135deg, #ffd56b, #ffb347);
  box-shadow: 0 12px 30px rgba(255, 179, 71, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 16px 40px rgba(255, 179, 71, 0.45);
}

.btn-secondary {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(10, 18, 40, 0.9);
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ===========================
   HERO PAINEL
=========================== */

.hero-right {
  position: relative;
}

.hero-panel {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 179, 71, 0.18), transparent 55%), 
              linear-gradient(145deg, #0b142b, #050814);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-panel-title {
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-panel-tag {
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(5, 8, 20, 0.8);
  border: 1px solid var(--border-soft);
  color: var(--muted);
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.hero-stat {
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(5, 8, 20, 0.9);
  border: 1px solid var(--border-soft);
  font-size: 0.8rem;
}

.hero-stat-label {
  color: var(--muted);
  margin-bottom: 2px;
}

.hero-stat-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(5, 8, 20, 0.9);
  border: 1px solid var(--border-soft);
}

/* ===========================
   CARDS E GRIDS
=========================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border-soft);
  padding: 16px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-kicker {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.card-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.card-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.about-image {
  margin: 24px 0 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.94;
  filter: saturate(0.5) contrast(1.08);
}

/* === ANIMAÇÃO DE BRILHO NAS LINHAS DO MAPA === 
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 179, 71, 0.08), transparent 70%);
  animation: mapGlow 5s linear infinite;
  mix-blend-mode: screen;
}

@keyframes mapGlow {
  0% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(100%); }
}

/* ===========================
   PROCESSO
=========================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  border-radius: var(--radius-md);
  background: rgba(5, 8, 20, 0.9);
  border: 1px solid var(--border-soft);
  padding: 10px 12px;
  font-size: 0.82rem;
}

.process-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 500;
}

.process-step p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ===========================
   SETORES
=========================== */

.sectors-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sector-pill {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(5, 8, 20, 0.9);
  border: 1px solid var(--border-soft);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===========================
   CONTATO
=========================== */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

form {
  border-radius: var(--radius-lg);
  background: rgba(5, 8, 20, 0.9);
  border: 1px solid var(--border-soft);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.required {
  color: var(--danger);
  margin-left: 2px;
}

input, select, textarea {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 20, 0.9);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(255, 179, 71, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.4);
  background: rgba(5, 8, 20, 0.98);
}

textarea {
  resize: vertical;
  min-height: 110px;
  max-height: 220px;
}

.contact-meta-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border-soft);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-meta-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-meta-list {
  margin-top: 8px;
  display: grid;
  gap: 6px;
  font-size: 0.8rem;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.contact-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ===========================
   FOOTER
=========================== */

footer {
  border-top: 1px solid var(--border-soft);
  padding: 16px 18px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(5, 8, 20, 0.96);
}

/* ===========================
   ANIMAÇÕES
=========================== */

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVIDADE
=========================== */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
