/* ══════════════════════════════════════════
   MONCOES DETAIL PAGE — mobile-first
   ══════════════════════════════════════════ */

/* ── Header ── */
.emp-detail-header {
  background: #fff;
  padding-top: 75px; /* menu height */
}

.emp-detail-header__inner {
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.emp-detail-header__heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.emp-detail-header__heading h1 {
  font-size: 28px;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.3;
}

.emp-detail-header__sub {
  font-size: 18px;
  font-weight: 500;
  color: #626261;
  margin: 0;
}

.emp-detail-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0;
}

/* ── Gallery ── */
.emp-detail-gallery {
  background: #fff;
  padding: 32px 0 0;
}

.emp-gallery {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.emp-gallery__track {
  width: 100%;
}

.emp-gallery__slide {
  display: none;
}

.emp-gallery__slide.is-active {
  display: block;
}

.emp-gallery__slide img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #14161a;
  display: block;
  cursor: pointer;
}

.emp-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--red, #e73c38);
  border: none;
  border-radius: 6px;
  width: 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}

.emp-gallery__btn:hover {
  background: var(--red-darker, #b91511);
}

.emp-gallery__btn--prev {
  left: 0;
  border-radius: 0 6px 6px 0;
}

.emp-gallery__btn--next {
  right: 0;
  border-radius: 6px 0 0 6px;
}

.emp-gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

/* ── Description ── */
.emp-detail-desc {
  background: #fff;
  padding: 36px 0 64px;
}

.emp-detail-desc__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.emp-detail-desc__text {
  font-size: 16px;
  color: #111;
  line-height: 1.7;
  margin: 0;
}

.emp-detail-desc__link {
  color: var(--red, #e73c38);
  font-weight: 700;
  text-decoration: underline;
}

.emp-detail-desc__link:hover {
  color: var(--red-darker, #b91511);
}

/* ══════════════════════════════════════════
   DETALHES SECTION
   ══════════════════════════════════════════ */

.emp-details {
  background: #f7f7f7;
  padding: 56px 0 64px;
}

/* ── Specs strip ── */
.emp-specs-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

.emp-spec-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 12px;
  text-align: center;
}

.emp-spec-item__value {
  font-size: 22px;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.1;
}

.emp-spec-item__label {
  font-size: 12px;
  color: #8e8e8e;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Info cards ── */
.emp-info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.emp-info-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--red, #e73c38);
}

.emp-info-card__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--red, #e73c38);
  margin: 0 0 14px;
}

.emp-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emp-info-list li {
  font-size: 14px;
  color: #454545;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.emp-info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red, #e73c38);
}

.emp-info-card__address {
  font-size: 14px;
  color: #454545;
  line-height: 1.6;
  margin: 0;
}

/* ── Finance box ── */
.emp-finance-box {
  background: #2f2f2f;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.emp-finance-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.emp-finance-price span {
  font-size: 12px;
  color: #bfbfbf;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.emp-finance-price strong {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.emp-finance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.emp-finance-tag {
  background: rgba(231, 60, 56, .15);
  border: 1px solid rgba(231, 60, 56, .4);
  color: #f87977;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── Map section ── */
.emp-map-section {
  background: #fff;
  padding: 56px 0 0;
}

.emp-map-section__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 24px;
}

.emp-map-section__header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.4;
}

.emp-map {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

/* ══════════════════════════════════════════
   TABLET  ≥ 768px
   ══════════════════════════════════════════ */
@media (min-width: 768px) {
  .emp-detail-header__heading h1 {
    font-size: 32px;
  }

  .emp-specs-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .emp-info-grid {
    flex-direction: row;
  }

  .emp-info-card {
    flex: 1;
  }

  .emp-finance-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .emp-gallery__slide img {
    height: 480px;
  }

  .emp-gallery__btn {
    width: 44px;
    height: 64px;
  }

  .emp-detail-desc__inner {
    flex-direction: row;
    gap: 40px;
  }

  .emp-detail-desc__text {
    flex: 1;
  }
}

/* ══════════════════════════════════════════
   DESKTOP  ≥ 1024px
   ══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .emp-map {
    height: 600px;
  }

  .emp-detail-header__inner {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .emp-detail-header__heading h1 {
    font-size: 36px;
  }

  .emp-detail-header__sub {
    font-size: 22px;
  }

  .emp-detail-gallery {
    padding-top: 40px;
  }

  .emp-gallery__slide img {
    height: 660px;
  }

  .emp-gallery__btn {
    width: 48px;
    height: 72px;
  }

  .emp-detail-desc {
    padding: 48px 0 80px;
  }

  .emp-detail-desc__inner {
    gap: 48px;
  }

  .emp-detail-desc__text {
    font-size: 18px;
  }
}

/* ══════════════════════════════════════════
   WIDE  ≥ 1280px
   ══════════════════════════════════════════ */
@media (min-width: 1280px) {
  .emp-detail-header__heading h1 {
    font-size: 40px;
  }

  .emp-gallery__slide img {
    height: 760px;
  }

  .emp-detail-desc {
    padding: 56px 0 100px;
  }

  .emp-detail-desc__inner {
    gap: 64px;
  }

  .emp-detail-desc__text {
    font-size: 20px;
  }
}
