.bg-brand {
  background-color: #183A68 !important;
}

/* Exemplo: texto com a cor da marca */
.text-brand {
  color: #183A68 !important;
}

/* Exemplo: botão com cor da marca */
.btn-brand {
  background-color: #C7D73E !important;
  color: #183A68 !important;
  border-color: #C7D73E !important;
}

.btn-brand:hover {
  background-color: #C7D73E !important; /* um pouco mais escuro */
  border-color: #C7D73E !important;
}

/* Classe auxiliar para altura mínima de 50vh */
.min-vh-50 {
  min-height: 50vh;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero-image {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  display: block;
}

.content-card {
  background-color: #183A68;
  min-height: 50vh;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-neria {
  font-size: 3rem;
  font-weight: bold;
  color: #C4D600;
  margin-bottom: 1.5rem;
}

.subtitle {
  color: white;
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  max-width: 350px;
}

.btn-yellow {
  background-color: #C4D600;
  color: #183A68;
  font-weight: 600;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 350px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.btn-yellow:hover {
  background-color: #B0C400;
}

.btn-white {
  background-color: white;
  color: #183A68;
  font-weight: 600;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 350px;
  font-size: 1.1rem;
}

.page-indicator {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
}

.indicator-dot {
  width: 60px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.indicator-dot.active {
  background-color: white;
}