/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --azul-escuro: #0a1e3f;
  --azul-medio: #12306b;
  --azul-claro: #1e4fa3;
  --dourado: #f5b921;
  --branco: #ffffff;
  --cinza-claro: rgba(255, 255, 255, 0.75);
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 50%, var(--azul-claro) 100%);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 760px;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* ===== Logos ===== */
.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.logo {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* A logo do Orienta tem fundo escuro igual ao da página: exibe direta */
.logo-orienta {
  height: 144px;
  mix-blend-mode: screen;
}

/* ===== Hero ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--dourado);
  border-radius: 999px;
  color: var(--dourado);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--branco), var(--dourado));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 520px;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cinza-claro);
}

.subtitle strong {
  color: var(--branco);
  font-weight: 600;
}

/* ===== Footer ===== */
.footer {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsivo ===== */
@media (max-width: 480px) {
  .logo {
    height: 56px;
  }

  .logo-orienta {
    height: 102px;
  }
}
