.deals-page {
  background: var(--bg);
}

.mp-deals-hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 4rem;
}

.mp-deals-hero .fondo-scroll {
  height: 100%;
  min-height: 630px;
}

.mp-deals-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2rem;
}

.mp-deals-title {
  font-size: clamp(2.6rem, 6vw, 3rem);
  font-weight: 300;
  margin: 0 0 0.4rem;
  color: #fff;
  text-align: center;
}

.mp-deals-subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--amarillo);
  margin: 0 0 2.7rem;
  text-align: center;
}

.mp-deals-panel {
  position: relative;
  z-index: 1;
  background: rgba(8, 10, 14, 0.72);
  color: #fff;
  border-radius: 26px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mp-deals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.mp-deal-card {
  background: rgba(15, 18, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.6rem;
  display: grid;
  gap: 1.2rem;
  align-content: start;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mp-deal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 236, 2, 0.6);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
}

.mp-deal-card__logo {
  border-radius: 18px;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid #e6e7eb;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-deal-card__logo img {
  max-width: 360px;
  max-height: 144px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.mp-deal-card:not(.mp-deal-card--featured) .mp-deal-card__logo {
  height: 190px;
}

.mp-deal-card__body {
  display: grid;
  gap: 0.8rem;
}

.mp-deal-card__title {
  margin: 1.2rem 0 0.4rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.mp-deal-card__description {
  margin: 0.7rem 0;
  color: #cfd5e2;
  line-height: 1.6;
  font-size: 1.05rem;
  text-align: justify;
}

.mp-deal-card__description > * {
  margin-top: 0;
}

.mp-deal-card__description > *:last-child {
  margin-bottom: 0;
}

.mp-deal-card__description p {
  margin: 0 0 0.6rem;
}

.mp-deal-card__description em {
  display: block;
  font-style: normal;
  font-weight: 400;
  color: #FFF;
  background: var(--rojo);
  border-radius: 12px;
  padding: 0.55rem 0.9rem 0.55rem 2.2rem;
  margin: 0.6rem 0;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.mp-deal-card__description em::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: #FFF;
  border-radius: 999px;
  transform: translateY(-50%);
}

.mp-deal-card__description em strong {
  font-weight: 700;
}

.mp-deal-card__description em:first-of-type {
  margin-top: 2.5rem;
}

.mp-deal-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--amarillo);
  color: #000;
  font-weight: 700;
  border: 1px solid transparent;
  width: fit-content;
  margin-top: 0.6rem;
  align-self: center;
  justify-self: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  box-shadow: 0 12px 30px rgba(254, 236, 2, 0.2);
}

.mp-deal-card__cta:hover {
  background: #f7de00;
  color: #000;
  transform: translateY(-1px);
}

.mp-deal-card__cta:focus-visible {
  outline: 2px solid rgba(254, 236, 2, 0.9);
  outline-offset: 2px;
}

.mp-deal-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.6rem;
  padding: 2.2rem;
  background: rgba(12, 16, 24, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

.mp-deal-card--featured .mp-deal-card__logo {
  height: 100%;
  min-height: 220px;
}

.mp-deal-card--featured .mp-deal-card__logo img {
  max-width: 480px;
  max-height: 184px;
}

.mp-deal-card--featured .mp-deal-card__title {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.mp-deal-card--alt-two .mp-deal-card__logo {
  background: #0C0B0C;
  border-color: rgba(255, 255, 255, 0.08);
}

.mp-deal-card--alt-four .mp-deal-card__logo {
  background: #121121;
  border-color: rgba(255, 255, 255, 0.1);
}

.mp-deals-empty {
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(10, 12, 18, 0.7);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: #d5dbe6;
}

@media (max-width: 991px) {
  .mp-deal-card--featured {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .mp-deals-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575px) {
  .mp-deals-hero__content {
    padding-top: 0;
  }

  .mp-deals-panel {
    border-radius: 0;
  }
}
