/* ======================================================
   AUTÔNOMA.APP — GLOBAL DESIGN SYSTEM
   Mobile First • Responsivo • Profissional
   HEADER + FOOTER AZUL ESCURO (PADRÃO OFICIAL)
====================================================== */

/* -------------------------
   RESET & BASE
-------------------------- */

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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f7fb;
  color: #1f2937;
  line-height: 1.6;
}

/* -------------------------
   VARIÁVEIS DE CORES
-------------------------- */

:root {
  --blue-dark: #0b1f63;
  --blue-dark-hover: #132d8a;

  --primary: #2563eb;
  --secondary: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-700: #374151;
}

/* -------------------------
   CONTAINER
-------------------------- */

.container,
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* -------------------------
   HEADER (AZUL ESCURO)
-------------------------- */

header,
.header {
  background: var(--blue-dark);
  padding: 1rem 0;
}

.header .nav-btn,
header a {
  color: #e6ecff;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
}

.header .nav-btn:hover,
header a:hover {
  text-decoration: underline;
}

/* ❌ REMOVER TOP 10 DO HEADER */
.header .nav-btn[href*="top10"] {
  display: none;
}

/* -------------------------
   BOTÕES
-------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}

/* -------------------------
   CARD PROFISSIONAL
-------------------------- */

.pro-card,
.card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.pro-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gray-200);
}

.pro-name {
  font-weight: 800;
  font-size: 15px;
}

.pro-sub {
  font-size: 13px;
  color: var(--gray-400);
}

/* -------------------------
   FOOTER (AZUL ESCURO)
-------------------------- */

footer {
  background: var(--blue-dark);
  margin-top: 24px;
  padding: 24px 12px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.foot-links a {
  color: #cfe0ff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.foot-links a:hover {
  text-decoration: underline;
}

/* -------------------------
   RESPONSIVO
-------------------------- */

@media (max-width: 768px) {
  .header {
    text-align: center;
  }

  .foot-links {
    flex-direction: column;
    align-items: center;
  }
}