h2 {
  font-weight: 700;
}

.bg-fume{
  background: #1f1f1f33;
}

.curva-custom .shape-white {
  fill: white !important;
}

.img-estilo {
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

/* Adicione esse CSS ao seu arquivo de estilos */
.nav-pills-custom .nav-link {
  background-color: transparent;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.nav-pills-custom .nav-link:hover {
  background-color: var(--bs-primary);
  color: #fff;
  transform: translateY(-3px);
}

.nav-pills-custom .nav-link.active {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
}

.bg-ceu{
  background: linear-gradient(90deg, #eeecef, #e7e7e7, #dce8f4, #dceaf8, #eaf0f2);;
}

.custom-gradient {
    background: linear-gradient(to bottom, transparent 1%, rgba(0, 0, 0, 0.45) 39%);
    border-bottom-left-radius: 0px;
}

.img-estilo {
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.swiper-button-next,
.swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 54%);
}

.property-swiper-container .swiper-slide img {
  height: 415px;
  object-fit: cover;
}

/* Mantém responsivo em mobile */
@media (max-width: 768px) {

  .property-swiper-container .swiper,
  .property-swiper-container .swiper-slide img {
    height: auto;
    max-height: none;
  }
}

.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.text-shadow-lg {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.bg-contato{
  background-image: url(../imagens/bg-contato2.webp);
  background-position: bottom;
  background-size: cover;
}

.bg-contato-yellow {
  background: linear-gradient(90deg, 
    rgba(255, 223, 186, 1), 
    rgba(255, 236, 210, 1), 
    rgba(255, 248, 231, 1), 
    rgba(255, 236, 210, 1), 
    rgba(255, 223, 186, 1));
}

.bg-contato {
    position: relative;
}
.bg-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2); /* ou usar classes do Bootstrap: bg-dark opacity-50 */
}