/* Estilos do hero */
.hero {
  background: url('../../images/banner/hero-background.jpg') no-repeat center;
  background-size: cover;

  height: 500px;
  position: relative;
  border-radius: 15px;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 6rem;
}

.hero-content {
  color: #ffffff;
  max-width: 360px;
  text-align: center;
}

.buttons{
  display: flex;
  gap: 16px;
}

.hero-content .hero-title {
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-content .hero-subtitle {
  font-size: 1.87rem;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .hero {
    height: 660px;
    background-image: url(../../images/banner/hero-mobile.jpg);
  }

  .hero-overlay {
    padding: 0;
  }

  .hero-content .hero-title{
		font-size: 1.5rem;
	}

  .hero-content .hero-subtitle{
		font-size: 1.25rem;
	}

  .hero-content{
		max-width: 330px;
		margin: 0 auto;
	}


  .buttons{
    align-items: center;
  }

  .btn{
		font-size: 1.2rem;
	}
}
