/* ===================================================================
   Página inicial — hero moderno com ilustração SVG (sem depender de
   arquivo de imagem), nas cores da União (#2d04c2 / #2196F3 / #eb561b)
   =================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-fundo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.forma {
  transform-origin: center;
}
.forma-lenta { animation: flutuar 14s ease-in-out infinite; }
.forma-media { animation: flutuar 10s ease-in-out infinite reverse; }
.forma-rapida { animation: flutuar 7s ease-in-out infinite; }

@keyframes flutuar {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(0, -22px) scale(1.04); }
}

.brilho {
  animation: brilhar 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes brilhar {
  0%, 100% { opacity: 0.55; transform: scale(0.9) rotate(0deg); }
  50%      { opacity: 1;    transform: scale(1.08) rotate(12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .forma, .brilho { animation: none; }
}

.hero-conteudo {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 24px;
  animation: surgir 0.8s ease both;
}
@keyframes surgir {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 26px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}

.hero-selo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.hero h1 span {
  background: linear-gradient(90deg, #ffd7a8, #ffffff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitulo {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin: 0 auto 34px;
}

.hero-botoes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.botao-hero {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 999px;
  background: #eb561b;
  box-shadow: 0 10px 30px rgba(235, 86, 27, 0.45);
}
.botao-hero:hover {
  background: #ff6a2b;
  box-shadow: 0 12px 34px rgba(235, 86, 27, 0.6);
  transform: translateY(-2px);
}

.botao-hero-secundario {
  display: inline-flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.botao-hero-secundario:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.85);
}

@media (max-width: 600px) {
  .hero { min-height: 82vh; padding: 40px 0; }
  .hero-logo { height: 42px; margin-bottom: 20px; }
  .hero-subtitulo { font-size: 14.5px; }
  .botao-hero, .botao-hero-secundario { padding: 14px 28px; font-size: 15px; width: 100%; justify-content: center; }
  .hero-botoes { width: 100%; }
}
