/* SECTION: KING EM DOBRO (2 POR 25) */
.promo-dobro {
  position: relative;
  width: 100%;
  height: 720px;
  background-image: url("../public/images/background-2-burguers.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.promo-dobro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.promo-dobro__container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-dobro__info {
  color: #fff;
  max-width: 600px;
}

.promo-dobro__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-dobro__burgers {
  display: flex;
  align-items: baseline;
  gap: 15px;
  line-height: 0.8;
  margin-top: 5px;
  margin-bottom: 10px;
}

.promo-dobro__burgers .number {
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 12rem);
}

.promo-dobro__burgers .text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
}

.promo-dobro__starting {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
  margin-left: 10px;
  letter-spacing: 2px;
}

.promo-dobro__price {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-display);
  line-height: 0.8;
  margin-top: 10px;
  margin-bottom: 40px;
}

.promo-dobro__price .currency {
  font-size: 2.2rem;
  margin-top: 25px;
  margin-right: 8px;
}

.promo-dobro__price .integer {
  font-size: clamp(8rem, 15vw, 13rem);
}

.promo-dobro__price .decimal {
  font-size: 3.5rem;
  margin-top: 30px;
}

.promo-dobro__disclaimer {
  font-size: 10px;
  max-width: 400px;
  line-height: 1.3;
  opacity: 0.7;
  text-transform: uppercase;
}

.promo-dobro__card {
  background-color: #fafafa;
  padding: 50px 40px;
  border-radius: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  max-width: 580px;
}

.promo-dobro__card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #502314;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.promo-dobro__options {
  display: flex;
  gap: 15px;
}

.promo-dobro__option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.option-image {
  background-color: #1a1a1a;
  padding: 8px;
  border-radius: 16px;
  margin-bottom: 12px;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.option-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.promo-dobro__option p {
  font-size: 0.65rem;
  font-weight: 900;
  text-align: center;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.2;
}

