@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ========================
   RESET & BASE
======================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #F3F4F6; font-family: 'Inter', sans-serif; color: #1F2937; }
a { text-decoration: none; }
a:hover { text-decoration: none; }

/* ========================
   NAVBAR
======================== */
.navbar-web3 {
  background: #0a0414;
  border-bottom: 1px solid rgba(124,58,237,.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-web3-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  min-height: 68px;
  display: flex;
  align-items: center;        /* garante centralização vertical */
  justify-content: space-between;
}

.nav-brand a {
  display: flex;
  align-items: center;
  height: 100%;               /* ocupa toda a altura da navbar */
}

.nav-brand img {
  display: block;
  height: 36px;               /* altura fixa da logo */
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-top: 15px;
}
.nav-links li a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55);
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 500;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links li a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links li a i { font-size: 11px; opacity: .7; }
.nav-links .nav-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.1);
  margin: 0 6px;
  pointer-events: none;
}
.nav-links .nav-painel a { color: #A78BFA !important; }
.nav-links .nav-painel a:hover { color: #fff !important; background: rgba(124,58,237,.15); }
.nav-links .nav-cta a {
  background: #7C3AED;
  color: #fff !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
}
.nav-links .nav-cta a:hover { background: #6D28D9; color: #fff !important; }
.nav-toggle-wrap { display: none; }

@media (max-width: 768px) {
  .navbar-web3-inner { padding: 0 16px; height: 58px; }
  .nav-toggle-wrap { display: block; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 58px; left: 0; right: 0;
    background: #0a0414;
    border-bottom: 1px solid rgba(124,58,237,.2);
    padding: 8px 16px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 11px 10px; }
  .nav-links .nav-divider { width: 100%; height: 1px; margin: 4px 0; }
}
/* ========================
   HERO BANNER
======================== */
.hero-banner {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(167,139,250,.15) 0%, transparent 60%),
    linear-gradient(180deg, #0f051e 0%, #1a0838 50%, #0f051e 100%);
  padding: 80px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.35);
  color: #A78BFA; font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 22px; letter-spacing: 0.3px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: #7C3AED; border-radius: 50%; display: inline-block; }
.hero-content h1 {
  color: #fff;
  font-size: 48px; font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #A78BFA, #7C3AED, #C4B5FD);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-content p { color: rgba(255,255,255,.5); font-size: 16px; margin-bottom: 36px; }
.hero-search {
  display: flex; max-width: 580px; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; overflow: hidden;
  padding: 6px; gap: 6px;
  backdrop-filter: blur(8px);
}
.hero-search input {
  flex: 1; padding: 12px 16px; border: none;
  background: transparent; color: #fff;
  font-size: 14px; font-family: 'Inter', sans-serif; outline: none;
}
.hero-search input::placeholder { color: rgba(255,255,255,.35); }
.hero-search button {
  padding: 12px 22px; background: linear-gradient(135deg, #7C3AED, #5B21B6);
  color: #fff; border: none; border-radius: 8px;
  font-weight: 600; font-size: 14px; cursor: pointer; white-space: nowrap;
  transition: opacity .2s, transform .15s;
  display: flex; align-items: center; gap: 7px;
}
.hero-search button:hover { opacity: .9; transform: scale(1.02); }
.hero-stats {
  display: flex; justify-content: center; gap: 40px;
  margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { color: rgba(255,255,255,.4); font-size: 13px; }
.hero-stat strong { color: #A78BFA; font-size: 20px; font-weight: 700; display: block; margin-bottom: 3px; }

@media (max-width: 576px) {
  .hero-banner { padding: 50px 16px 45px; }
  .hero-content h1 { font-size: 30px; letter-spacing: -0.5px; }
  .hero-search { flex-direction: column; background: transparent; border: none; padding: 0; }
  .hero-search input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; color: #fff; }
  .hero-search button { border-radius: 10px; justify-content: center; }
  .hero-stats { gap: 20px; }
}



/* ========================
   LAYOUT
======================== */
.main-container { padding-top: 24px; padding-bottom: 40px; }
.col-vagas { padding: 0 !important; }
.col-sidebar { padding-left: 20px !important; }
@media (max-width: 767px) { .col-sidebar { padding-left: 0 !important; margin-top: 20px; } }

/* ========================
   CARD VAGA
======================== */
.card-vaga {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid #E5E7EB;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.card-vaga:hover {
  border-color: #7C3AED;
  box-shadow: 0 4px 16px rgba(124,58,237,.12);
  transform: translateY(-1px);
}
.card-vaga-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.empresa-logo {
  width: 48px; height: 48px; object-fit: contain;
  border-radius: 8px; border: 1px solid #E5E7EB; flex-shrink: 0;
}
.empresa-logo-mini { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; border: 1px solid #E5E7EB; }
.card-vaga-info { flex: 1; min-width: 0; }
.vaga-titulo { font-size: 16px; font-weight: 600; line-height: 1.3; margin-bottom: 2px; }
.vaga-titulo a { color: #1F2937; }
.vaga-titulo a:hover { color: #7C3AED; }
.vaga-empresa { font-size: 13px; color: #6B7280; }
.card-vaga-badges { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.card-vaga-body {}
.vaga-stack { margin-bottom: 10px; }
.tag-stack {
  display: inline-block; background: #EDE9FE; color: #5B21B6;
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 4px; margin: 2px 3px 2px 0;
}
.tag-stack-lg { font-size: 13px; padding: 5px 12px; }
.vaga-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #6B7280; }
.vaga-meta span { display: inline-flex; align-items: center; gap: 4px; }
.vaga-meta a { color: #7C3AED; }
.vaga-tempo { margin-left: auto; }

.sem-vagas { text-align: center; padding: 60px 20px; background: #fff; border-radius: 10px; color: #9CA3AF; }
.sem-vagas i { font-size: 40px; display: block; margin-bottom: 12px; }
.resultado-busca { padding: 10px 0; font-size: 14px; color: #6B7280; }
.busca-header { background: #EDE9FE; color: #5B21B6; padding: 12px 16px; border-radius: 8px; font-size: 14px; }

/* ========================
   SIDEBAR
======================== */
.menu-right { background: #fff; border-radius: 10px; border: 1px solid #E5E7EB; margin-bottom: 16px; overflow: hidden; }
.menu-right .title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  padding: 12px 16px; border-bottom: 1px solid #F3F4F6;
  color: #374151; text-transform: uppercase;
}
.menu-right .title i { margin-right: 6px; color: #7C3AED; }
.menu-right .content { padding: 12px 16px; }
.menu-right .content ul { list-style: none; }
.menu-right .content ul li { border-bottom: 1px solid #F3F4F6; }
.menu-right .content ul li:last-child { border-bottom: none; }
.menu-right .content ul li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 4px; color: #374151; font-size: 13px; transition: color .2s; }
.menu-right .content ul li a:hover { color: #7C3AED; }
.menu-right .content ul li a i { margin-right: 8px; color: #7C3AED; width: 16px; }
.menu-right .content .media { padding: 8px 0; border-bottom: 1px solid #F3F4F6; }
.menu-right .content .media:last-child { border-bottom: none; }
.menu-right .content .media h6 { font-size: 12px; margin-bottom: 2px; }
.menu-right .content .media h6 a { color: #1F2937; }
.menu-right .content .media h6 a:hover { color: #7C3AED; }
.menu-right .content .media small { color: #9CA3AF; font-size: 11px; }
.menu-right .content .margin-top { margin-top: 8px; }

.newsletter-box { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.newsletter-box .title { background: #7C3AED; color: #fff; border: none; }
.newsletter-box .title i { color: #C4B5FD; }
.newsletter-box .content p { font-size: 12px; color: #5B21B6; margin-bottom: 8px; }

/* ========================
   BTN WEB3
======================== */
.btn-web3 {
  background: linear-gradient(135deg, #7C3AED, #4C1D95);
  color: #fff !important; border: none; border-radius: 8px;
  font-weight: 600; padding: 10px 20px; transition: opacity .2s, transform .15s;
}
.btn-web3:hover { opacity: .9; transform: translateY(-1px); color: #fff; }

/* ========================
   PÁGINA DE VAGA COMPLETA
======================== */
.vaga-completa { padding: 24px; background: #fff; border-radius: 10px; }
.vaga-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.empresa-logo-grande { width: 70px; height: 70px; object-fit: contain; border-radius: 10px; border: 1px solid #E5E7EB; }
.vaga-header h2 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.vaga-empresa-nome { font-size: 15px; color: #6B7280; }
.vaga-badges-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.vaga-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; background: #F9FAFB; border-radius: 8px; padding: 16px; margin-bottom: 20px; font-size: 13px; color: #374151; }
.vaga-meta-grid i { color: #7C3AED; margin-right: 6px; }
.vaga-meta-grid a { color: #7C3AED; }
.vaga-stack-full { margin-bottom: 20px; font-size: 13px; }
.vaga-descricao { font-size: 14px; line-height: 1.7; color: #374151; }
.vaga-descricao h4, .vaga-descricao h5 { margin: 16px 0 8px; }
.vaga-descricao ul, .vaga-descricao ol { padding-left: 20px; margin: 8px 0; }
.form-candidatura { margin-top: 24px; background: #F9FAFB; border-radius: 10px; padding: 24px; }
.form-candidatura h5 { margin-bottom: 16px; color: #4C1D95; }
.candidatura-externa { margin-top: 24px; background: #F0FDF4; border-radius: 10px; padding: 24px; text-align: center; }

/* ========================
   PÁGINAS ESTÁTICAS
======================== */
.pg-sobre, .pg-contato { padding: 28px; background: #fff; border-radius: 10px; }
.pg-sobre h4, .pg-contato h4 { color: #4C1D95; margin-bottom: 16px; }
.pg-sobre ul { padding-left: 20px; margin: 12px 0; }
.pg-sobre ul li { margin-bottom: 6px; font-size: 14px; }
.pg-sobre ol { padding-left: 20px; margin: 12px 0; }
.pg-sobre ol li { margin-bottom: 8px; font-size: 14px; }
.plano-card { background: #fff; border: 2px solid #E5E7EB; border-radius: 12px; padding: 24px; margin-bottom: 16px; text-align: center; }
.plano-card.plano-destaque { border-color: #7C3AED; background: #F5F3FF; }
.plano-card h5 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.plano-card .preco { font-size: 28px; font-weight: 700; color: #7C3AED; margin-bottom: 16px; }
.plano-card .preco small { font-size: 14px; color: #6B7280; }
.plano-card ul { list-style: none; text-align: left; margin-bottom: 20px; }
.plano-card ul li { padding: 5px 0; font-size: 13px; border-bottom: 1px solid #F3F4F6; }
.pg-404 { background: #fff; border-radius: 10px; }

/* ========================
   FOOTER
======================== */
.footer-web3 {
  background: #080313;
  border-top: 1px solid rgba(124,58,237,.2);
  margin-top: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
}
.footer-col h6 {
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo em { font-style: normal; color: #A78BFA; }
.footer-logo-icon {
  background: linear-gradient(135deg, #6D28D9, #8B5CF6);
  border-radius: 8px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.footer-col > p {
  color: rgba(255,255,255,.4);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: rgba(124,58,237,.3); color: #C4B5FD; border-color: rgba(124,58,237,.4); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.4); font-size: 13.5px; transition: color .2s; }
.footer-col ul li a:hover { color: #A78BFA; }
.footer-newsletter-desc { color: rgba(255,255,255,.4); font-size: 13px; line-height: 1.5; margin-bottom: 14px; }
.footer-newsletter-form {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  overflow: hidden;
  transition: border-color .2s;
}
.footer-newsletter-form:focus-within { border-color: rgba(124,58,237,.5); }
.footer-newsletter-form input {
  flex: 1; padding: 10px 14px; background: transparent;
  border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Inter', sans-serif;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter-form button {
  padding: 0 14px; background: #6D28D9; border: none;
  color: #fff; cursor: pointer; transition: background .2s;
  font-size: 13px;
}
.footer-newsletter-form button:hover { background: #7C3AED; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: 1200px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.25);
  font-size: 12px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 36px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 20px; }
}
@media (max-width: 576px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ========================
   ADMIN
======================== */
.admin-body { background: #F3F4F6; }
.panel-content { background: #fff; padding: 24px; border-radius: 10px; border: 1px solid #E5E7EB; }
.panel-content .titulo { border-bottom: 1px solid #E5E7EB; padding-bottom: 12px; margin-bottom: 20px; font-size: 16px; font-weight: 700; color: #4C1D95; }
.panel-content .btn { border-radius: 6px; }

.stat-card { padding: 20px 10px; background: #F9FAFB; border-radius: 10px; border: 1px solid #E5E7EB; margin-bottom: 12px; }
.stat-card h2 { font-size: 36px; font-weight: 700; }
.stat-card small { color: #6B7280; font-size: 12px; }

.menu { background: #1e0a3c; border-radius: 10px; overflow: hidden; }
.menu .title-menu { background: rgba(124,58,237,.3); color: #fff; padding: 14px 16px; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; border-bottom: 1px solid rgba(255,255,255,.1); }
.menu ul { list-style: none; }
.menu ul li { }
.menu ul li a.category { display: block; color: rgba(255,255,255,.6); padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,.05); }
.menu ul li a { display: block; color: rgba(255,255,255,.75); padding: 8px 16px 8px 28px; font-size: 13px; transition: background .15s; }
.menu ul li a:hover { background: rgba(255,255,255,.07); color: #fff; }
.menu ul li a i { margin-right: 8px; width: 14px; }
.menu ul li ul li a { border-top: none; }
.menu ul .blue .category { color: #93C5FD; }
.menu ul .cyan .category { color: #6EE7B7; }
.menu ul .cyan2 .category { color: #A5B4FC; }
.menu ul .green .category { color: #86EFAC; }
.menu ul .orange .category { color: #FCD34D; }
.menu ul .red .category { color: #FCA5A5; }
.menu ul .purple .category { color: #C4B5FD; }

.ul-adm { list-style: none; }
.ul-adm li { padding: 10px 6px; border-bottom: 1px solid #F3F4F6; font-size: 13px; display: flex; align-items: center; justify-content: space-between; }
.ul-adm li:hover { background: #F9FAFB; }

/* Pagination */
.pagination .page-link { color: #7C3AED; border-color: #E5E7EB; }
.pagination .page-item.active .page-link { background: #7C3AED; border-color: #7C3AED; }

/* Badges override */
.badge { font-weight: 600; }
