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

:root {
  --brand-navy: #154271;
  --brand-blue: #2a79b6;
  --brand-blue-dark: #123257;
  --brand-gold: #d7a437;
  --brand-soft: #eef4fb;
  --brand-border: #dce6f2;
  --brand-text: #102238;
  --brand-muted: #63748c;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #f3f7fc 0%, #eaf1fa 100%);
  color: var(--brand-text);
}

a {
  color: var(--brand-blue);
}

.brand-navbar {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-navy));
  box-shadow: 0 8px 18px rgba(12, 50, 87, 0.32);
}

.tag-strong {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(30, 108, 171, 0.16), rgba(30, 108, 171, 0.08));
  border: 1px solid rgba(30, 108, 171, 0.35);
  color: var(--brand-blue-dark);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-btn {
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-navy));
  border: none;
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 48, 87, 0.25);
}

.brand-btn:hover {
  color: #fff;
  filter: brightness(1.05);
}

.btn-gold {
  background: linear-gradient(120deg, #e7c265, var(--brand-gold));
  color: #0b1c32;
  border: none;
}

.btn-gold:hover {
  color: #0b1c32;
}

.card-elevated {
  border: 1px solid var(--brand-border);
  box-shadow: 0 16px 30px rgba(11, 28, 50, 0.08);
  border-radius: 14px;
}

/* Botões compactos na busca */
.search-action-btn {
  min-width: 120px;
}
@media (min-width: 768px) {
  .search-action-btn {
    padding-left: 12px !important;
    padding-right: 12px !important;
    width: 130px;
  }
  .search-action-form {
    justify-content: flex-end;
  }
}

.hero-banner {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(220, 230, 242, 0.9);
  box-shadow: 0 18px 50px rgba(12, 36, 64, 0.12);
}

.input-soft {
  border-radius: 14px;
  border: 1px solid var(--brand-border);
  padding: 14px 16px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.shield-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(140deg, #4ea5d9, #113663);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 74, 120, 0.35);
}

.tag {
  background: rgba(30, 108, 171, 0.08);
  border-radius: 999px;
  color: var(--brand-blue);
  padding: 6px 12px;
  font-size: 0.85rem;
}

.section-title {
  font-weight: 700;
  color: var(--brand-blue-dark);
}

.blurred-number {
  filter: blur(8px);
  user-select: none;
}

.inventory-chip {
  background: rgba(16, 48, 87, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--brand-blue-dark);
}

.suggest-card button {
  min-width: 128px;
}

.eval-card-selected {
  border: 2px solid var(--brand-gold) !important;
  box-shadow: 0 16px 32px rgba(215, 164, 55, 0.25);
}

.eval-square {
  align-items: center;
  aspect-ratio: 1 / 1;
  max-width: 200px;
}

.glass-card {
  background: #fff;
  border: 1px solid rgba(220, 230, 242, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(12, 36, 64, 0.12);
}

.login-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-text);
  font-weight: 500;
}

.login-bullet::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-gold));
  box-shadow: 0 0 0 6px rgba(30, 108, 171, 0.15);
}

.login-layout {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 991px) {
  .login-layout {
    grid-template-columns: 1fr;
  }
}

.pill {
  background: rgba(30, 108, 171, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--brand-blue-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  color: var(--brand-blue-dark);
}

.brand-btn {
  padding: 12px 26px;
  border-radius: 12px;
}

.footer-dark {
  background: linear-gradient(135deg, #122c4f, #102642);
  color: #f9fbff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-dark h6 {
  color: #ffffff;
}

.footer-dark a {
  color: #f2f5ff;
}

.footer-dark a:hover {
  color: #f0c05a;
}

.footer-dark .text-muted,
.footer-dark small {
  color: #d2dbea !important;
}

.footer-bottom {
  background: rgba(5, 10, 20, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
