/* Estilos específicos para a página Home */

.banner {
  width: 100%;
  background-image: url("../assets/images/banners/home-main-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 16 / 5;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  font-size: 3rem;
  font-weight: 700;
  line-height: 2.875rem;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

@media (min-width: 1200px) {
  .banner {
    height: 52vh;
  }

  .banner-content h1 {
    font-size: 3.5rem;
  }

  .banner-content p {
    font-size: 1.5rem;
  }
}
