/* =========================
   Estrutura base
   ========================= */
body {
  background: #001f3f; /* fundo azul institucional */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #d4af37;
  overflow-x: auto; /* ✅ permite rolagem lateral apenas quando necessário */
  overflow-y: auto; /* mantém rolagem vertical normal */
}

/* =========================
   Container geral do topo (fundo amarelo pastel)
   ========================= */
.topo-destaque {
  background-color: #fff8b3; /* amarelo pastel */
  padding: 0 0 30px 0; /* espaço inferior até o menu */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 47cm; /* largura total desejada */
  max-width: 100%;
  margin: 0 auto; /* centraliza toda a faixa */
  overflow: visible; /* garante que a imagem não seja cortada */
}

/* =========================
   Banner institucional (imagem centralizada)
   ========================= */
.banner-div-amarela {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 100%;
}

.banner-div-amarela img {
  content: url("images/metodologia_criando_princípios.png");
  width: 100%;            /* ocupa toda a faixa */
  max-width: 1500px;      /* mantém proporção ideal */
  height: 200px;          /* altura fixa */
  object-fit: fill;       /* ajusta sem cortar */
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* =========================
   Quadro institucional abaixo do banner
   ========================= */
.quadro-texto-pdf {
  width: 90%;                /* acompanha o limite da página */
  max-width: 1500px;         /* limite máximo */
  margin: 20px auto;
  background: #ffe17c;
  color: #1a1a1a;
  border-radius: 10px;
  font-family: "Monotype Corsiva", cursive;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  font-weight: normal;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid #ffcc00;
  padding: 25px 8%;
  box-sizing: border-box;
}

/* =========================
   Menu institucional
   ========================= */
.header-barra {
  display: flex;
  align-items: center;
  background: #001f3f;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 0;
  border-bottom: 2px solid #FFD700;
  justify-content: space-between;
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d4af37;
  width: 120px;
}

.logo-cct {
  width: 85px;
  height: auto;
  margin: 0 auto;
}

.sigla-cct,
.slogan-cct {
  text-align: center;
  width: 100%;
}

.sigla-cct {
  font-size: 22px;
  font-weight: bold;
  margin-top: 3px;
  letter-spacing: 2px;
}

.slogan-cct {
  font-size: 13px;
  font-style: italic;
  margin-top: 2px;
}

.menu-guia {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.menu-guia a {
  color: #ffe17c !important;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.menu-guia a:hover {
  background: #FFD700 !important;
  color: #001f3f !important;
}

.login-direita {
  min-width: 120px;
  text-align: right;
  display: flex;
  align-items: center;
  margin-left: 28px;
}

.login-direita button {
  background: #FFD700;
  color: #001f3f;
  border: none;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.login-direita button:hover {
  background: #b7950b;
}

/* =========================
   Main e cards institucionais
   ========================= */
main {
  background: #001f3f;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  padding: 0 12px 40px 12px;
}

.card-secao {
  background: #012d5a;
  color: #FFD700;
  padding: 26px 18px 16px 18px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-secao h3 {
  margin-bottom: 10px;
  color: #FFD700;
}

.card-secao img,
.card-historia img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 18px;
  display: block;
  border-radius: 8px;
}

.card-quemsomos {
  max-width: 600px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.secoes-topo {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.secao-mvv {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  text-align: center;
}

.card-historia {
  max-width: 900px;
  margin: 0 auto 32px auto;
  text-align: center;
  background: #012d5a;
  color: #FFD700;
  padding: 28px 24px 20px 24px;
  border-radius: 12px;
}

/* =========================
   Responsividade
   ========================= */
@media (max-width: 1500px) {
  .topo-destaque {
    width: 100%;
  }

  .banner-div-amarela img {
    width: 95vw;
    height: auto;
  }

  .quadro-texto-pdf {
    width: 95vw;
  }
}

@media (max-width: 900px) {
  .header-barra, .main, .quadro-texto-pdf { max-width: 99vw; }
  .quadro-texto-pdf { font-size: .98em; padding: 10px 3vw; }
  .main { padding: 0 2vw; }
  .secoes-topo { flex-direction: column; gap: 18px; }
}/* =========================
   Ajuste de texto nas seções institucionais
   ========================= */
.card-secao p,
.card-historia p {
  text-align: justify;     /* 👈 alinhamento justificado */
  line-height: 2;          /* 👈 espaçamento entre as linhas */
  font-size: 16px;         /* leve aumento para boa leitura */
  color: #f8e8a0;          /* mantém harmonia com o dourado do tema */
  font-family: Arial, sans-serif; /* fonte limpa e institucional */
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Ajuste nos títulos das seções (opcional, para harmonizar visualmente) */
.card-secao h3,
.card-historia h3 {
  margin-bottom: 15px;
  color: #FFD700; /* dourado institucional */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}/* =========================
   Ajuste de texto nas seções institucionais
   ========================= */
.card-secao p,
.card-historia p {
  text-align: justify;     /* alinhamento justificado */
  line-height: 2;          /* espaçamento entre as linhas */
  font-size: 16px;
  color: #f8e8a0;          /* dourado claro para boa leitura */
  font-family: Arial, sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  animation: aparecerSecao 1.3s ease-in-out both; /* animação suave */
}

/* Títulos das seções */
.card-secao h3,
.card-historia h3 {
  margin-bottom: 15px;
  color: #FFD700; /* dourado institucional */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Efeito de entrada suave */
@keyframes aparecerSecao {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/* =========================
   Ajuste de texto nas seções institucionais
   ========================= */
.card-secao p,
.card-historia p {
  text-align: justify;     /* alinhamento justificado */
  line-height: 2;          /* espaçamento entre as linhas */
  font-size: 16px;
  color: #f8e8a0;          /* dourado claro para boa leitura */
  font-family: Arial, sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  animation: aparecerSecao 1.3s ease-in-out both; /* animação suave */
}

/* Títulos das seções */
.card-secao h3,
.card-historia h3 {
  margin-bottom: 15px;
  color: #FFD700; /* dourado institucional */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Efeito de entrada suave */
@keyframes aparecerSecao {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Estilo visual refinado dos cards
   ========================= */
.card-secao,
.card-historia {
  border: 2px solid #d4af37; /* dourado institucional */
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.card-secao:hover,
.card-historia:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}/* =========================
   Botão do menu lateral direito
   ========================= */
.menu-icone {
  position: absolute;
  top: 25px;
  right: 35px;
  cursor: pointer;
  z-index: 300;
}

.menu-icone img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}

/* =========================
   Menu lateral que abre ao clicar
   ========================= */
.menu-lateral {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #001f3f;
  overflow-x: hidden;
  transition: 0.4s;
  border-left: 3px solid #FFD700;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  z-index: 250;
  padding-top: 80px;
}

.menu-lateral .fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #FFD700;
  cursor: pointer;
}

.titulo-menu {
  font-family: "Edwardian Script ITC", cursive;
  font-size: 38px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.5);
  padding-bottom: 8px;
}

.menu-lateral nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-lateral nav ul li {
  margin: 18px 0;
}

.menu-lateral nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-lateral nav ul li a:hover {
  color: #fff8b3;
  text-shadow: 0 0 6px #FFD700;
}/* =========================
   Ícone dourado no lugar do botão Login
   ========================= */
.menu-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
}

.menu-icone img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}

/* =========================
   Menu lateral
   ========================= */
.menu-lateral {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #001f3f;
  overflow-x: hidden;
  transition: 0.4s;
  border-left: 3px solid #FFD700;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  z-index: 250;
  padding-top: 80px;
}

.menu-lateral .fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #FFD700;
  cursor: pointer;
}

.titulo-menu {
  font-family: "Edwardian Script ITC", cursive;
  font-size: 38px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.5);
  padding-bottom: 8px;
}

.menu-lateral nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-lateral nav ul li {
  margin: 18px 0;
}

.menu-lateral nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-lateral nav ul li a:hover {
  color: #fff8b3;
  text-shadow: 0 0 6px #FFD700;
}
/* =========================
   Nome centralizado na barra
   ========================= */
.titulo-centro {
  flex: 1;
  text-align: center;
  font-family: "Edwardian Script ITC", cursive;
  font-size: 38px;
  color: #FFD700;
  letter-spacing: 1px;
}

/* =========================
   Ícone dourado no lado direito
   ========================= */
.menu-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  cursor: pointer;
}

.menu-icone img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}

/* =========================
   Menu lateral
   ========================= */
.menu-lateral {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #001f3f;
  overflow-x: hidden;
  transition: 0.4s;
  border-left: 3px solid #FFD700;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  z-index: 250;
  padding-top: 80px;
}

.menu-lateral .fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #FFD700;
  cursor: pointer;
}

.menu-lateral nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-lateral nav ul li {
  margin: 18px 0;
}

.menu-lateral nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-lateral nav ul li a:hover {
  color: #fff8b3;
  text-shadow: 0 0 6px #FFD700;
}
/* =========================
   Nome centralizado na barra (com brilho dourado animado)
   ========================= */
.titulo-centro {
  flex: 1;
  text-align: center;
  font-family: "Edwardian Script ITC", cursive;
  font-size: 38px;
  color: #FFD700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Efeito de brilho dourado animado */
.titulo-centro::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: brilhoDourado 4s infinite;
}

@keyframes brilhoDourado {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* =========================
   Ícone dourado no lado direito
   ========================= */
.menu-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  cursor: pointer;
}

.menu-icone img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}

/* =========================
   Menu lateral
   ========================= */
.menu-lateral {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #001f3f;
  overflow-x: hidden;
  transition: 0.4s;
  border-left: 3px solid #FFD700;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  z-index: 250;
  padding-top: 80px;
}

.menu-lateral .fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #FFD700;
  cursor: pointer;
}

.menu-lateral nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-lateral nav ul li {
  margin: 18px 0;
}

.menu-lateral nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-lateral nav ul li a:hover {
  color: #fff8b3;
  text-shadow: 0 0 6px #FFD700;
}/* ===== Barra superior ===== */
.header-barra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #001f3f;
  border-bottom: 2px solid #FFD700;
  padding: 10px 20px;
}

/* ===== Nome central ===== */
.titulo-centro {
  flex: 1;
  text-align: center;
  font-family: "Edwardian Script ITC", cursive;
  font-size: 38px;
  color: #FFD700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Brilho dourado animado no nome */
.titulo-centro::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: brilhoDourado 4s infinite;
}

@keyframes brilhoDourado {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* ===== Ícone dourado lateral ===== */
.menu-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-icone img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}

/* ===== Menu lateral ===== */
.menu-lateral {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #001f3f;
  overflow-x: hidden;
  transition: 0.4s;
  border-left: 3px solid #FFD700;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  z-index: 250;
  padding-top: 80px;
}

.menu-lateral .fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #FFD700;
  cursor: pointer;
}

.menu-lateral nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-lateral nav ul li {
  margin: 18px 0;
}

.menu-lateral nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-lateral nav ul li a:hover {
  color: #fff8b3;
  text-shadow: 0 0 6px #FFD700;
}.header-barra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #001f3f;
  border-bottom: 2px solid #FFD700;
  padding: 10px 20px;
}

.titulo-centro {
  flex: 1;
  text-align: center;
  font-family: "Edwardian Script ITC", cursive;
  font-size: 38px;
  color: #FFD700;
  letter-spacing: 1px;
}

.menu-icone {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu-icone img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}/* ===== Ícone do menu (lado direito da barra) ===== */
.menu-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 25px;
}

.menu-icone img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}

/* ===== Menu lateral direito ===== */
.menu-lateral {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #001f3f;
  overflow-x: hidden;
  transition: width 0.4s ease;
  border-left: 3px solid #FFD700;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding-top: 80px;
}

.menu-lateral .fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #FFD700;
  cursor: pointer;
}

.menu-lateral nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-lateral nav ul li {
  margin: 18px 0;
}

.menu-lateral nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-lateral nav ul li a:hover {
  color: #fff8b3;
  text-shadow: 0 0 6px #FFD700;
}
/* ======= Ajuste para o novo posicionamento do menu ======= */
.header-barra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f;
  padding: 10px 30px;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  max-width: 1000px;
  margin: 0 auto;
}

.titulo-centro {
  flex: 1;
  text-align: center;
  font-family: "Edwardian Script ITC", cursive;
  font-size: 36px;
  color: #FFD700;
  font-weight: bold;
}

.menu-icone {
  cursor: pointer;
}

.menu-icone img {
  width: 38px;
  height: 38px;
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFD700;
}

.logo-box img {
  width: 70px;
  height: auto;
}/* ===== Ajuste do menu abaixo do banner ===== */
.header-barra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  padding: 10px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.titulo-centro {
  flex: 1;
  text-align: center;
  font-family: "Edwardian Script ITC", cursive;
  font-size: 36px;
  color: #FFD700;
  font-weight: bold;
}

.menu-icone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.menu-icone img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.menu-icone:hover img {
  transform: scale(1.1);
}/* ===== Nome e guias abaixo ===== */
.titulo-centro {
  flex: 1;
  text-align: center;
  font-family: "Edwardian Script ITC", cursive;
  font-size: 44px; /* aumentada */
  color: #FFD700;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

/* ===== Guias abaixo do nome ===== */
.menu-guia {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 10px;
  background-color: #001f3f;
  padding: 8px 0;
  border-bottom: 2px solid #FFD700;
}

.menu-guia a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  margin: 0 20px;
  transition: color 0.3s ease;
}

.menu-guia a:hover {
  color: #fff8b3;
  text-shadow: 0 0 6px #FFD700;
}/* =============================
   NOME + IMAGEM LADO A LADO
============================= */
.titulo-centro-com-imagem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.titulo-centro {
  font-family: "Edwardian Script ITC", cursive;
  font-size: 50px; /* aumentado em 30% */
  color: #FFD700;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  margin: 0;
}

.imagem-lado-titulo {
  height: 130px; /* altura proporcional ao texto */
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
/* =========================
   Ajuste final: título + imagem + botão Login
   ========================= */
.titulo-centro-com-imagem {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 25px;
  flex-wrap: wrap;
}

.titulo-centro {
  font-family: "Edwardian Script ITC", cursive;
  font-size: 50px;
  color: #FFD700;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  margin-right: 30px; /* desloca ligeiramente para a esquerda */
}

.imagem-lado-titulo {
  height: 130px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Botão Login no canto direito */
.botao-login {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #FFD700;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  border: 2px solid #FFD700;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.botao-login:hover {
  background-color: #FFD700;
  color: #001f3f;
}















