.promo-modal {
  background: rgba(15, 25, 35, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin: 0 auto;
}

.promo-fullwidth {
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.modal-backdrop.show {
  opacity: 0.65;
  background-color: #000;
}

.promo-body {
  padding: 40px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promo-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.promo-close::before, .promo-close::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.promo-close::before { transform: rotate(45deg); }
.promo-close::after { transform: rotate(-45deg); }

.promo-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.promo-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.promo-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

.promo-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(226, 176, 68, 0.2);
  color: #e2b044;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.promo-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  line-height: 1.5;
}

.promo-highlight {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #e2b044;
  text-shadow: 0 0 15px rgba(226, 176, 68, 0.4);
  margin: 10px 0;
  animation: promoPulse 2s infinite;
}

@keyframes promoPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.promo-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  flex: 1;
  max-width: 160px;
}

.promo-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.promo-whatsapp { background-color: #25D366; color: #fff; }
.promo-call { background-color: #e2b044; color: #111; }

@media (max-width: 768px) {
  .promo-fullwidth {
    max-width: calc(100% - 32px);
    margin: 16px;
  }
}

@media (max-width: 380px) {
  .promo-title { font-size: 22px; }
  .promo-highlight { font-size: 34px; }
  .promo-text { font-size: 15px; }
  .promo-btn { font-size: 14px; }
}