.empreendimentos {
  padding-top: 0;
}

.emp-hero {
  min-height: 735px;
  background: url("assets/empreendimentos/img/emp-hero-bg.png") center/cover no-repeat;
}

.emp-hero-inner {
  width: 100%;
}

.emp-hero-title {
  margin: 0;
  max-width: 539px;
  font-family: Rustica, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 50px;
  line-height: 56.32px;
  font-weight: 300;
  color: var(--color-text);
}

.emp-hero-title strong {
  font-weight: 500;
}

.emp-content {
  padding: 70px 0 110px;
}

.emp-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.emp-filter-label {
  font-size: 16px;
  font-weight: 500;
}

.emp-dropdown {
  position: relative;
}

.emp-dropdown-btn {
  height: 52px;
  min-width: 280px;
  max-width: 100%;
  padding: 0 22px;
  border-radius: 35px;
  border: 0;
  background: var(--color-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
}

.emp-dropdown-btn img {
  width: 16px;
  height: 16px;
}

.emp-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 2px solid var(--color-muted);
  border-radius: 18px;
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 5;
}

.emp-dropdown.is-open .emp-dropdown-menu {
  display: block;
}

.emp-dropdown-option {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 12px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
}

.emp-dropdown-option[aria-selected="true"] {
  background: rgba(255, 194, 14, 0.2);
}

.emp-swiper {
  width: 100%;
}

.emp-swiper:not(.swiper-initialized) .emp-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.emp-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: #000;
}

.emp-item-bg {
  width: 100%;
  height: 617px;
  object-fit: cover;
}

.emp-item-overlay {
  position: absolute;
  inset: 50px 45px 50px auto;
  width: 471px;
  height: 518px;
  border-radius: 25px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  background: rgba(24, 24, 24, 0.6);
  backdrop-filter: blur(11px);
  transition: background-color 180ms ease, backdrop-filter 180ms ease;
}

.emp-item.is-hover .emp-item-overlay {
  background: var(--color-yellow);
  backdrop-filter: none;
}

.emp-badge {
  position: absolute;
  left: 45px;
  top: 50px;
  width: 133px;
  height: auto;
  z-index: 2;
}

.emp-status {
  width: fit-content;
  height: 30px;
  padding: 0 18px;
  border-radius: 40px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
}

.emp-card-body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.emp-card-title {
  width: 220px;
  height: auto;
}

.emp-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 295px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emp-feature {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
  font-size: 19px;
  transition: color 180ms ease;
}

.emp-item.is-hover .emp-feature {
  color: var(--color-text);
}

.emp-feature img {
  width: 24px;
  height: 24px;
  transition: filter 180ms ease;
}

.emp-cta {
  width: 256px;
  height: 52px;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  border: 0;
  background: var(--color-yellow);
  color: var(--color-text);
  transition: background-color 180ms ease, color 180ms ease;
}

.emp-item.is-hover .emp-cta {
  background: var(--color-text);
  color: #ffe600;
}

.emp-cta-arrow--white {
  display: none;
}

.emp-item.is-hover .emp-cta-arrow--white {
  display: inline;
}

.emp-item.is-hover .emp-cta-arrow--dark {
  display: none;
}

.emp-cta img {
  width: 7px;
  height: 14px;
}

.emp-item .emp-card-title,
.emp-item .emp-feature img {
  filter: brightness(0) invert(1);
}

.emp-item.is-hover .emp-card-title,
.emp-item.is-hover .emp-feature img {
  filter: none;
}

.emp-item.is-hidden {
  display: none;
}

@media (max-width: 1200px) {
  .emp-filter {
    flex-direction: column;
    align-items: flex-start;
  }

  .emp-dropdown-btn {
    width: min(360px, 100%);
  }

  .emp-item-bg {
    height: 520px;
  }

  .emp-item-overlay {
    inset: 24px 24px auto 24px;
    width: auto;
    height: auto;
    gap: 40px;
  }

  .emp-badge {
    left: 24px;
    top: 24px;
  }

  .emp-features {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .emp-hero-title {
    font-size: 34px;
    line-height: 40px;
  }

  .emp-item-bg {
    height: 420px;
  }

  .emp-cta {
    width: 100%;
  }
}
