
/* button rounded */
.image-rounded {border-radius: 9px} 

.down-section-2 {
    position: absolute;
    width: 100%;
    /* bottom: 50px; */
    left: 0;
    right: 0;
}


.h4-linha {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #495057;;
}

.bg-degrade-azul-man {
  /* background: linear-gradient(135deg, #A5C2FE, #FFFFFF); */
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  width: 100%;
  min-height: 100vh; /* altura mínima igual à da tela */
}

/* animação da abertura */
.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e1e;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #555;
  margin-top: 1rem;
  max-width: 720px;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
