:root {
      --bs-primary: #98072c;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(50, 50, 50, 0.3) 100%);
  z-index: 1 !important;
}

.hero-content {
  position: relative;
  z-index: 10 !important;
  animation: fadeInUp 1s ease-out;
}

.hero-title-modern {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.title-highlight {
  color: #ffffff !important;
}

.description-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin: 0 auto;
}

.hero-description-modern {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-modern {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-modern>header,
.hero-modern>nav,
.hero-modern>.navbar,
.hero-modern>div:first-child {
  position: relative;
  z-index: 1000 !important;
}

/* --------------------------------------------------------- */
/* -- begin:: Feature Box e Galeria
    /* --------------------------------------------------------- */
.feature-box {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 17px rgb(172 0 0 / 27%);
}

.gallery-img {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img.tall {
  height: 400px;
}

.gallery-img.small {
  height: 190px;
}

.gallery-img img {
  transition: transform 0.3s ease;
}

.gallery-img img:hover {
  transform: scale(1.05);
}

/* --------------------------------------------------------- */
/* -- begin:: Seções com Imagens
    /* --------------------------------------------------------- */
.bullet-point {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.image-container {
  position: relative;
}

.image-container.large {
  height: 280px;
}

.image-container.medium {
  height: 135px;
}

.image-container.small {
  height: 120px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.02);
}

/* --------------------------------------------------------- */
/* -- begin:: Lista de Diferenciais
    /* --------------------------------------------------------- */
.caracteristicas-lista {
  max-width: 100%;
}

.lista-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.lista-item:last-child {
  border-bottom: none;
}

.lista-item:hover {
  padding-left: 1rem;
  border-radius: 8px;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-right: 1rem;
}

.item-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.cardImovel {
  border: none;
}

/* --------------------------------------------------------- */
/* -- begin:: Responsividade
    /* --------------------------------------------------------- */
@media (max-width: 991px) {

  .image-container.large,
  .image-container.medium,
  .image-container.small {
    height: 200px;
  }

  .image-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    background-attachment: scroll;
  }

  .hero-title-modern {
    font-size: 2.5rem;
  }

  .btn-modern {
    min-width: auto;
    width: 100%;
    max-width: 280px;
    margin-bottom: 0.8rem;
  }

  .description-card {
    margin: 0 1rem;
    padding: 15px;
  }

  .image-container.large,
  .image-container.medium,
  .image-container.small {
    height: 180px;
    margin-bottom: 1rem;
  }

  .col-6:last-child .image-container {
    margin-bottom: 0;
  }

  .lista-item {
    padding: 1rem 0;
  }

  .image-container {
    height: 300px;
  }
}