.hero-section {
  position: relative;
  height: 100vh;
  color: #fff;
}
.parallax-bg {
  background: url('../img/fundo1.jpg') no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.animate-btn {
  transition: all 0.3s ease-in-out;
}
.animate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.box-infos {
  background-color: #007dbf;
}

.evento-box {
  height: 580px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}
.evento-box span {
  background: rgba(0,0,0,0.4);
  padding: 5px 10px;
  border-radius: 4px;
}
.evento-box:hover {
  transform: scale(1.03);
}
