#custom-hero {
  display: grid;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.video-container {
  grid-area: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000066;
  z-index: 2;
}

.custom-hero-content {
  grid-area: 1 / 1;
  justify-self: center;
  align-self: center;
  display: flex;
  flex-flow: column;
  text-align: center;
  align-items: center;
  gap: 32px;
  color: white;
  max-width: 895px;
  z-index: 2;
  padding: 0 24px;
}

.custom-hero-content h1 {
  font-size: 56px;
  line-height: 75px;
  font-weight: 400;
  margin-bottom: 0;
}

.custom-hero-content p {
  font-size: 18px;
  line-height: 28px;
}

.custom-book-now-button {
  background-color: #2686f2;
  color: white;
  padding: 15px 50px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  width: max-content;
}

.custom-book-now-button:hover {
  background-color: #01354d;
  color: #fff;
}

@media (max-width: 768px) {
  .custom-hero-content {
    gap: 35px;
  }

  .custom-hero-content h1 {
    font-size: 30px;
    line-height: normal;
  }

  .custom-hero-content p {
    font-size: 16px;
    line-height: 26px;
    padding: 0 13px;
    margin-bottom: 0;
  }

  .custom-book-now-button {
    margin-top: 22px;
    padding: 15px 50px;
    font-size: 16px;
    /* Ajuste para móviles */
  }
}
