/* Utilitários de animação */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 10% -20%, rgba(13, 71, 161, .22), transparent 60%),
    radial-gradient(1200px 600px at 110% 120%, rgba(46, 125, 50, .22), transparent 60%),
    linear-gradient(135deg, var(--blue-700), var(--green-600));
  color: var(--white);
  padding: 88px 0 0;
  position: relative;
  overflow: hidden;
}

.hero .badge {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-weight: 800;
  letter-spacing: .2px;
}

.hero p.lead {
  color: #FAFCFF;
  max-width: 900px;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--green-600), #1B5E20);
  border: none;
  box-shadow: var(--shadow-lg);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
}

/* Unificar dimensões/raio de todos os botões do herói */
.hero-cta .btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 48px;
}

.hero-cta .btn-primary:hover {
  filter: brightness(1.05);
}

.hero-cta .btn-outline-light {
  border-width: 2px;
}

.hero-cta .btn-light {
  border-width: 2px;
}

.hero-cta .btn-outline-light:hover {
  color: #0B1B3A;
  background: #fff;
  border-color: #fff;
}

.hero .crest {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 10px;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

/* Utilitário p/ modo preto e branco do brasão/logos */
.grayscale {
  filter: grayscale(1) contrast(1.1) brightness(1.05);
}

/* Onda decorativa */
.hero-wave {
  position: relative;
  margin-top: 48px;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* Stats */
.stats {
  padding: 72px 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid #E7EEF8;
  border-top: 4px solid var(--blue-700);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-700), var(--green-600));
  box-shadow: 0 10px 20px rgba(16, 78, 139, .22);
}

.icon-circle svg {
  color: #fff;
}

.stat-value {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--blue-700);
}

.stat-label {
  font-weight: 800;
  color: var(--slate-700);
}

.stat-note {
  font-size: .98rem;
  color: var(--slate-700);
}

/* Timeline */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-700), var(--green-600));
  border-radius: 3px;
}

.step {
  position: relative;
  padding-left: 72px;
}

.step+.step {
  margin-top: 28px;
}

.step .num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  background-image: linear-gradient(135deg, var(--blue-700), var(--green-600));
}

.step h5 {
  font-weight: 800;
  color: var(--blue-800);
}

.step .card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.step .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Resources */
.resource-card {
  background: var(--white);
  border: 1px solid #E7EEF8;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.resource-card h5 {
  color: var(--blue-800);
  font-weight: 800;
}

.resource-card .text-muted {
  color: var(--slate-700) !important;
}

/*
  body.login-page { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(135deg,#0D47A1,#2E7D32); }
  .card { width: 100%; max-width: 420px; border: none; border-radius: 18px; box-shadow: 0 16px 60px rgba(0,0,0,.2); }
  .brand { text-align: center; color: #0D47A1; font-weight: 800; }
  .btn-primary { background: linear-gradient(135deg,#2E7D32,#1B5E20); border: none; }
  a { color: #0D47A1; }
  .grayscale{filter:grayscale(1) contrast(1.05) brightness(1.05)}

*/