@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    filter: drop-shadow(0 0 5px var(--primary));
  }

  50% {
    filter: drop-shadow(0 0 15px var(--primary));
  }

  100% {
    filter: drop-shadow(0 0 5px var(--primary));
  }
}

.premium-modal {
  animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(17, 17, 20, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6) !important;
}

.announcement-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: pulseGlow 2s infinite ease-in-out;
}

/* ============================================================
   TECH VAGAS BRASIL — style.css (Versão 3.0 — Arquitetura Avançada)
   ============================================================ */

:root {
  --primary: #06D6A0;
  --primary-hover: #05b88a;
  --primary-glow: rgba(6, 214, 160, 0.25);
  --accent: #FF9F1C;
  --accent2: #7C3AED;
  --danger: #EF4444;
  --dark-bg: #0D1B2A;
  --card-bg: #1B263B;
  --card-hover: #1f2f48;
  --body-bg: #0B1118;
  --text-main: #E0E0E0;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --border-active: var(--primary);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --dark-bg: #F8FAFC;
  --body-bg: #F1F5F9;
  --card-bg: #FFFFFF;
  --card-hover: #F8FAFC;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== MODO ALTO CONTRASTE (Acessibilidade WCAG AA/AAA) ===== */
[data-theme="contrast"] {
  --primary: #00FF88;
  --primary-hover: #00dd77;
  --primary-glow: rgba(0, 255, 136, 0.3);
  --accent: #FFD700;
  --dark-bg: #000000;
  --body-bg: #000000;
  --card-bg: #111111;
  --card-hover: #1a1a1a;
  --text-main: #FFFFFF;
  --text-muted: #CCCCCC;
  --border: rgba(255, 255, 255, 0.35);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.8);
}

[data-theme="contrast"] .job-card {
  border-width: 2px;
  border-color: rgba(255,255,255,0.4);
}

[data-theme="contrast"] .job-title {
  color: #FFFFFF;
  font-size: 1.1rem;
}

[data-theme="contrast"] .job-company-name {
  color: #00FF88;
}

[data-theme="contrast"] .hero-title {
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
}

[data-theme="contrast"] .tag-remoto { background: #003322; color: #00FF88; border: 1px solid #00FF88; }
[data-theme="contrast"] .tag-hibrido { background: #332200; color: #FFD700; border: 1px solid #FFD700; }
[data-theme="contrast"] .tag-presencial { background: #220033; color: #CC88FF; border: 1px solid #CC88FF; }
[data-theme="contrast"] .tech-pill { border-color: rgba(255,255,255,0.4); color: #DDDDDD; background: #1a1a1a; }
[data-theme="contrast"] .tech-pill:hover,
[data-theme="contrast"] .tech-pill.active { background: #003322; color: #00FF88; border-color: #00FF88; }
[data-theme="contrast"] .header { background-color: #000000; border-bottom: 2px solid #00FF88; }
[data-theme="contrast"] body { font-size: 16px; }

/* ===== BOTÃO DE ACESSIBILIDADE (FLUTUANTE) ===== */
.accessibility-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
  color: var(--text-muted);
  font-size: 1.3rem;
  outline: none;
}

.accessibility-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.accessibility-btn:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

[data-theme="contrast"] .accessibility-btn {
  background: #000;
  border-color: #00FF88;
  color: #00FF88;
}

/* Tooltip de acessibilidade */
.accessibility-btn::before {
  content: attr(aria-label);
  position: absolute;
  right: 60px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.accessibility-btn:hover::before {
  opacity: 1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--body-bg);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 0.4s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  /* Layout flexível padrão */
  display: flex;
  flex-direction: column;
}

/* Imagens adaptáveis */
img {
  max-width: 100%;
  height: auto;
}

/* ===================== HEADER ===================== */
.header {
  background-color: rgba(13, 27, 42, 0.92);
  height: 66px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-img {
  height: 30px;
  width: auto;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 0.1rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle i {
  width: 24px;
  height: 24px;
}

.header-search {
  flex: 1;
  max-width: 320px;
  position: relative;
}

.header-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1rem 0.45rem 2.4rem;
  color: var(--text-main);
  font-size: 0.78rem;
  outline: none;
  transition: border-color 0.2s;
}

.header-search input:focus {
  border-color: var(--primary);
}

.header-search .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 13px;
  height: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.action-icon {
  color: var(--text-muted);
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  position: relative;
}

.action-icon:hover {
  color: var(--primary);
}

.notif-bell {
  position: relative;
}

.notif-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--danger);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 100px;
  min-width: 14px;
  text-align: center;
  display: none;
}

.notif-badge.visible {
  display: block;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.7) 0%, rgba(6, 214, 160, 0.05) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 214, 160, 0.12);
  color: var(--primary);
  border: 1px solid rgba(6, 214, 160, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

.hero-badge i {
  width: 12px;
  height: 12px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 60%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 500px;
  margin-inline: auto;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #000;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--primary-glow);
}

.btn-hero:hover {
  transform: scale(1.05);
  background: var(--primary-hover);
}

.btn-hero i {
  width: 16px;
  height: 16px;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-hero-outline i {
  width: 16px;
  height: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat-num.green {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ===================== FILTROS ===================== */
.filters-section {
  padding: 1.5rem 0 1rem;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 66px;
  z-index: 100;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.filter-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.filter-label i {
  width: 10px;
  height: 10px;
}

.filter-select,
.filter-input {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-size: 0.78rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.filter-select:focus,
.filter-input:focus {
  border-color: var(--primary);
}

.filter-actions-group {
  justify-content: flex-end;
}

.btn-clear-filters {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-clear-filters:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.btn-clear-filters i {
  width: 12px;
  height: 12px;
}

.tech-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.pill-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.tech-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.tech-pill:hover,
.tech-pill.active {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}

/* ===================== VAGAS ===================== */
.vagas-section {
  padding: 3rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.vagas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

/* JOB CARD — VERSÃO PREMIUM WOW */
.job-card {
  background: rgba(27, 38, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 214, 160, 0.15);
  background: rgba(31, 47, 72, 0.6);
}

.job-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transition: height 0.4s ease;
}

.job-card:hover::after {
  height: 100%;
}

.card-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.card-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.job-company-block {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.job-company-logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--border);
  padding: 3px;
}

.job-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.job-company-logo i,
.job-company-logo span {
  font-size: 1.8rem;
  color: #000;
}

.card-title-block {
  flex: 1;
  min-width: 0;
}

.job-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Titulo legível: sem uppercase forçado */
  letter-spacing: -0.2px;
}

.job-company-info {
  display: flex;
  flex-direction: column;
}

.job-company-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.job-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0.5rem 0;
}

.tag {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.tag-remoto {
  background: rgba(6, 214, 160, 0.15);
  color: var(--primary);
}

.tag-hibrido {
  background: rgba(255, 159, 28, 0.15);
  color: var(--accent);
}

.tag-presencial {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
}

.tag-contrato {
  background: rgba(148, 163, 184, 0.1);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* TRUST LEVELS */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.trust-badge i {
  width: 10px;
  height: 10px;
}

.trust-high {
  background: rgba(6, 214, 160, 0.15);
  color: var(--primary);
  border: 1px solid rgba(6, 214, 160, 0.3);
  box-shadow: 0 0 15px rgba(6, 214, 160, 0.1);
}

.trust-medium {
  background: rgba(255, 159, 28, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 159, 28, 0.3);
}

.trust-low {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.badge-new {
  background: var(--primary);
  color: #000;
  font-size: 0.55rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 0 15px var(--primary-glow);
}



.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-time i {
  width: 14px;
  height: 14px;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #000;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.75rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-apply:hover {
  background: #fff;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-apply i {
  width: 14px;
  height: 14px;
}

/* EXPLORE CARD */
.explore-card {
  border: 1.5px dashed var(--primary) !important;
  background: rgba(6, 214, 160, 0.03) !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
}

/* ===================== SPECIAL PAGES HEADERS ===================== */
.special-header-page,
.company-header-page {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.05), rgba(124, 58, 237, 0.05));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(6, 214, 160, 0.3);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(6, 214, 160, 0.05);
}

.special-header-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 214, 160, 0.1) 0%, transparent 70%);
  z-index: -1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.special-header-icon {
  font-size: 5rem;
  filter: drop-shadow(0 0 20px var(--primary));
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px var(--primary));
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 35px var(--primary));
  }
}

.special-header-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(to right, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.special-header-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
}

.special-header-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.special-header-tag {
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-header-tag.active {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-back-home {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.btn-back-home:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateX(-5px);
}

/* Responsividade para cabeçalhos especiais */
@media (max-width: 768px) {
  .special-header-page {
    padding: 3rem 1rem 2rem;
  }

  .btn-back-home {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 2rem;
  }
}

/* ===================== RADAR ===================== */
.radar-section {
  padding: 4rem 0;
  background: var(--dark-bg);
}

.radar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
}

.radar-visual-wrap {
  display: flex;
  justify-content: center;
}

.radar-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(6, 214, 160, 0.3);
  position: relative;
  background: radial-gradient(circle, rgba(6, 214, 160, 0.05) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(6, 214, 160, 0.1), inset 0 0 40px rgba(6, 214, 160, 0.05);
  overflow: hidden;
}

.radar-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  border: 1px solid rgba(6, 214, 160, 0.15);
}

.radar-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: 25%;
  border-radius: 50%;
  border: 1px solid rgba(6, 214, 160, 0.15);
}

.radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(6, 214, 160, 0.4) 60deg, transparent 60deg);
  animation: radar-spin 3s linear infinite;
  transform-origin: center;
}

.radar-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.radar-inner small {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
}

.radar-blips {
  position: absolute;
  inset: 0;
}

.radar-blip {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: blip-fade 2s ease-out forwards;
}

.radar-feed {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.radar-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: slideInRight 0.4s ease forwards;
  border-left: 3px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.radar-item:hover {
  background: var(--card-hover);
  border-color: var(--primary);
  transform: translateX(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.radar-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.radar-item-info {
  flex: 1;
}

.radar-item-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.radar-item-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.radar-item-time {
  font-size: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

/* ===================== CONTADORES ===================== */
.counters-section {
  padding: 3rem 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.8rem;
}

.counter-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.counter-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  background: var(--card-hover);
}

.counter-uf {
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.counter-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.counter-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.counter-bar {
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  margin-top: 8px;
  overflow: hidden;
}

.counter-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 100px;
}

/* ===================== MAPA ===================== */
.map-section {
  padding: 3rem 0;
  background: var(--dark-bg);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

.map-container {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}

#map-svg-container svg {
  max-width: 580px;
  width: 100%;
  height: auto;
}

.state-path {
  fill: rgba(27, 38, 59, 0.8);
  stroke: var(--body-bg);
  stroke-width: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.state-path:hover {
  filter: brightness(1.4);
}

.state-path.active {
  fill: var(--primary) !important;
  filter: drop-shadow(0 0 8px var(--primary));
}

/* Heat map coloring via JS */
.state-path.heat-1 {
  fill: rgba(6, 214, 160, 0.15);
}

.state-path.heat-2 {
  fill: rgba(6, 214, 160, 0.3);
}

.state-path.heat-3 {
  fill: rgba(6, 214, 160, 0.5);
}

.state-path.heat-4 {
  fill: rgba(6, 214, 160, 0.7);
}

.state-path.heat-5 {
  fill: rgba(6, 214, 160, 0.9);
}

.map-legend-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.legend-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.legend-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.legend-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.legend-item-name {
  color: var(--text-muted);
}

.legend-item-count {
  color: var(--primary);
  font-weight: 800;
  background: rgba(6, 214, 160, 0.1);
  padding: 1px 8px;
  border-radius: 100px;
}

.map-heat-scale {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  color: var(--text-muted);
}

.heat-bar {
  flex: 1;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(to right, rgba(6, 214, 160, 0.1), rgba(6, 214, 160, 1));
}

/* ===================== EMPRESAS ===================== */
.companies-section {
  padding: 3.5rem 0;
}

.companies-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
}

.companies-carousel::-webkit-scrollbar {
  display: none;
}

.company-card {
  flex: 0 0 170px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  transition: var(--transition);
}

.company-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.company-logo {
  font-size: 1.8rem;
}

.company-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.company-jobs-count {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(6, 214, 160, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ===================== RANKINGS ===================== */
.rankings-section {
  padding: 3.5rem 0;
  background: var(--dark-bg);
}

.rankings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ranking-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.ranking-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ranking-title i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.ranking-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.ranking-pos {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(6, 214, 160, 0.1);
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ranking-pos.gold {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
}

.ranking-pos.silver {
  background: rgba(192, 192, 192, 0.15);
  color: #C0C0C0;
}

.ranking-pos.bronze {
  background: rgba(205, 127, 50, 0.15);
  color: #CD7F32;
}

.ranking-name {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-main);
}

.ranking-bar-wrap {
  width: 80px;
}

.ranking-bar {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.ranking-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 100px;
}

.ranking-count {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 800;
  min-width: 24px;
  text-align: right;
}

/* DONUT para modalidade */
.donut-chart {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.donut-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.donut-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.donut-label-name {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-main);
}

.donut-pct {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
}

.donut-bar-wrap {
  width: 100px;
}

.donut-bar {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.donut-bar-fill {
  height: 100%;
  border-radius: 100px;
}

/* ===================== SEO PAGES ===================== */
.seo-pages-section {
  padding: 3rem 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem;
}

.seo-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.seo-card:hover {
  border-color: var(--primary);
  background: var(--card-hover);
}

.seo-card-tech {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.seo-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.seo-card-count {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.seo-card-url {
  font-size: 0.58rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: monospace;
}

/* ===================== FOOTER ===================== */
footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--dark-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links h5 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================== TOAST ===================== */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 9999;
}

.toast {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  min-width: 280px;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow);
  animation: slideInRight 0.3s ease forwards;
}

.toast.removing {
  animation: slideOutRight 0.3s ease forwards;
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-text {
  flex: 1;
  font-size: 0.78rem;
  color: var(--text-main);
}

.toast-text strong {
  color: #fff;
  display: block;
  font-size: 0.8rem;
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-card {
  background: var(--dark-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
}

/* SPECIAL EXPLORE CARD — PREMIUM LOOK */
.special-explore {
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.9), rgba(124, 58, 237, 0.2)) !important;
  border: 2px solid var(--accent2) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
  transform: scale(1.02);
}

.special-explore:hover {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.9), rgba(124, 58, 237, 0.3)) !important;
}

.special-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 10px var(--accent2));
  animation: pulse-special 2s infinite;
}

@keyframes pulse-special {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px var(--accent2));
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--accent2));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px var(--accent2));
  }
}

/* EMPTY STATE */
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(6, 214, 160, 0.03);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-lg);
}

/* ===================== ANIMATIONS ===================== */
@keyframes glow-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--primary);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 12px var(--primary);
  }
}

@keyframes radar-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes blip-fade {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(30px);
  }
}

@keyframes float-particle {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-20px);
    opacity: 0.2;
  }
}

/* Partículas flutuantes */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  animation: float-particle linear infinite;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .vagas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rankings-grid {
    grid-template-columns: 1fr;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .radar-layout {
    grid-template-columns: 1fr;
  }

  .radar-visual-wrap {
    display: none;
  }
}

@media (max-width: 900px) {
  .vagas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding: 0;
    /* Removendo padding do body para usar o do container */
  }

  .container {
    padding: 0 1rem;
    flex-direction: column;
  }

  .job-card {
    width: 100%;
    margin-bottom: 15px;
  }

  .nav-menu {
    font-size: 14px;
    position: fixed;
    top: 66px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 66px);
    background: var(--dark-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-menu.open {
    left: 0;
  }

  button,
  .btn-apply,
  .btn-header-apply {
    padding: 12px 18px;
    font-size: 16px;
  }

  .mobile-menu-toggle {
    display: block;
    order: 1;
  }

  .logo-container {
    order: 2;
  }

  .header-actions {
    order: 3;
    gap: 0.5rem;
  }

  .header-search {
    display: none;
  }

  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-num {
    font-size: 1.3rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .vagas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  .nav-menu {
    font-size: 13px;
  }

  .hero-title {
    font-size: 20px;
  }

  .filters-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ANIMAÇÃO DE VAGA ENCONTRADA PELO RADAR */
.job-card-found {
  animation: cardFound 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 25px var(--primary-glow) !important;
  z-index: 50;
  position: relative;
}

@keyframes cardFound {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
    filter: brightness(3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}

.job-card-found::before {
  content: "VAGA DETECTADA";
  position: absolute;
  top: -10px;
  right: 15px;
  background: var(--primary);
  color: #000;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}