.hero-section {
  height: 70vh;
  overflow: hidden;
}


.hero-img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  background: rgba(0, 51, 153, 0.35);
  height: 70vh;
  z-index: 1;
}

.hero-text {
  z-index: 2;
}

.titulo-animado {
  font-family: 'Roboto-Bold';
  font-size: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecer 1.5s ease-out forwards;
}

.subtitulo-animado {
  font-size: 1.2rem;
  font-family: 'Roboto-Regular';
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecer 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.asterisco-obligatorio {
  color: var(--azul-botones);
  font-weight: bold;
}

.form-card {
  font-family: 'Roboto-Regular';
  border-radius: 12px;
  border: 0.5px solid black;

  background: #fff;
  padding: 2rem;
}

.form-card input,
.form-card textarea,
.form-card select {
  border: 0.5px solid black;
}

.btn-primary,
.btn-outline-secondary {
  font-family: 'Roboto-Bold' !important;
}

.btn-primary {
  background-color: var(--azul-botones) !important;
  border: none !important;
  padding: 0.5rem 1rem !important;
}

.btn-primary:hover {
  background-color: var(--azul-fuerte) !important;
}

.btn-outline-secondary {
  background-color: var(--azul-fuerte) !important;
  color: white !important;
}

.btn-outline-secondary {
  background-color: var(--azul-fuerte) !important;
  color: white !important;
  border: none !important;
}

.btn-outline-secondary:hover {
  background-color: var(--azul-botones) !important;
  color: white !important;
  border: none !important;

}
