/* ============================================================
 RESET
============================================================ */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body {
 font-family: 'Segoe UI', sans-serif;
 line-height: 1.6;
 color: #333;
}
/* ============================================================
 NAVBAR (BOOTSTRAP - AJUSTADA)
============================================================ */
.navbar {
 min-height: 140px;
 padding: 30px 20px;
}
.navbar-brand img {
 max-height: 95px;
}
.navbar-nav .nav-link {
 font-size: 19px;
 font-weight: 600;
 padding: 16px 22px;
 color: #16128a !important;
}
.navbar-nav .nav-link:hover {
 color: #004080 !important;
}
.navbar .btn-warning {
 padding: 14px 26px;
 font-size: 16px;
 border-radius: 14px;
}
body.home {
 padding-top: 160px;
}
/* ============================================================
 CARROSSEL
============================================================ */
.carousel-item img {
 width: 100%;
 height: 650px;
 object-fit: cover;
 border-radius: 10px;
}
@media (max-width: 768px) {
 .carousel-item img {
 height: 380px;
 }
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
 background-color: #004080;
 border-radius: 50%;
 padding: 28px;
 background-size: 60% 60%;
}
/* ============================================================
 ACESSO RÁPIDO (BOTÕES)
============================================================ */
.acesso-rapido {
 text-align: center;
 padding: 40px 20px;
 background: #f4f4f4;
}
.acesso-botoes {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 22px;
 margin-top: 25px;
}
.btn-img {
 display: inline-block;
 border-radius: 18px;
 overflow: hidden;
 transition: transform .3s, box-shadow .3s;
}
.btn-img img {
 width: 170px;
 display: block;
}
.btn-img:hover {
 transform: translateY(-6px);
 box-shadow: 0 15px 30px rgba(0,0,0,.25);
}
/* ============================================================
 TÍTULOS COM DUAS CORES
============================================================ */
.titulo-duas-cores {
 font-size: 36px;
 font-weight: 700;
 color: #004080;
}
.titulo-duas-cores span {
 color: #f5b400;
}
@media (max-width: 768px) {
 .titulo-duas-cores {
 font-size: 26px;
 }
}
/* ============================================================
 FOOTER
============================================================ */
footer {
 background: #111;
 padding: 20px;
 text-align: center;
 color: #fff;
}
footer .redes a {
 color: #fff;
 margin: 0 10px;
/* ===============================
   RELATO DOS PAIS
================================ */

.relato-pais {
  text-align: center;
  font-size: 18px;
  color: #004080; /* azul institucional */
  max-width: 800px;
  margin: 0 auto;
}

.relato-pais footer {
  margin-top: 15px;
  font-size: 16px;
  color: #004080;
  font-style: normal;
  font-weight: 600;
}


