/* =========================
   HERO (promo-hero)
========================= */
.promo-hero{
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  margin-top: 72px; /* se sua navbar é fixa */
  overflow: hidden;
}
.promo-hero__bg{ position: absolute; inset: 0; }

.promo-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.promo-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 30% 20%, rgba(0,0,0,.25), transparent 60%),
    linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.35), rgba(0,0,0,.2));
}

.promo-hero__content{
  position: relative;
  padding: 22px 0 26px;
  color: #fff;
}

.promo-hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.16);
  width: fit-content;
  margin-bottom: 10px;
  font-weight: 700;
}

.promo-hero__badge .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--alfa-red);
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
}

.promo-hero__title{
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0 0 6px;
}

.promo-hero__desc{
  max-width: 760px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
}

.promo-hero__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.promo-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  font-weight: 600;
}

.promo-hero__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   LIST (promo-list)
========================= */
.promo-list{ padding: 18px 0 40px; }

.promo-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 14px;
}

.promo-toolbar__title{
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.promo-toolbar__hint{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: .9rem;
}

/* =========================
   CARD (promo-card)
========================= */
.promo-card{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
  height: 100%;
}

.promo-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

.promo-card__media{ position: relative; }

.promo-card__media img,
.promo-card__placeholder{
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  background: #e5e7eb;
}

.promo-card__badges{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-card__body{ padding: 14px 14px 16px; }

.promo-card__title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 6px;
}

.promo-card__meta,
.promo-card__city{
  color: #6b7280;
  font-size: .92rem;
}

.promo-card__meta{ margin-bottom: 6px; }
.promo-card__meta i{ margin-right: 6px; }
.promo-card__city{ margin-bottom: 10px; }

.promo-card__price{
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--alfa-red);
}

.promo-card__cta{
  margin-top: 10px;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
}

/* =========================
   HOME PROMO (home-promo)
   (usa a mesma var --alfa-red)
========================= */
.home-promo{ padding: 10px 0 24px; }

.home-promo__card{
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr; /* imagem maior, texto menor */
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #0b0f18;
  box-shadow: 0 16px 50px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.06);
  min-height: 260px;
}

.home-promo__media{
  position: relative;
  min-height: 260px;
}

.home-promo__img,
.home-promo__placeholder{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-promo__placeholder{
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.home-promo__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 25% 20%, rgba(0,0,0,.25), transparent 60%),
    linear-gradient(to right, rgba(0,0,0,.30), rgba(0,0,0,.75));
}

.home-promo__content{
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(to left, rgba(0,0,0,.30), rgba(0,0,0,.70));
}

.home-promo__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  width: fit-content;
  font-weight: 800;
  margin-bottom: 10px;
}

.home-promo__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--alfa-red);
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
}

.home-promo__title{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
}

.home-promo__desc{
  margin: 0 0 14px;
  color: rgba(255,255,255,.88);
  line-height: 1.45;
  max-width: 520px;
}

.home-promo__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.home-promo__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

.home-promo__pill i{ opacity: .95; }

.home-promo__cta{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: #fff;
  width: fit-content;
}

.home-promo__cta i{ transition: transform .15s ease; }
.home-promo__card:hover .home-promo__cta i{ transform: translateX(2px); }

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991.98px){
  .home-promo__card{ grid-template-columns: 1fr; }
  .home-promo__media{ min-height: 220px; }
  .home-promo__content{ padding: 18px 16px; }
}

@media (max-width: 575.98px){
  .promo-hero{
    min-height: 300px;
    margin-top: 64px;
  }
  .promo-card__media img,
  .promo-card__placeholder{
    height: 170px;
  }
}
