/* Reopen Button */
.promo-reopen-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(0);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  opacity: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.promo-reopen-btn i {
  font-size: 18px;
  transform: rotate(-90deg);
}

.promo-reopen-btn:hover {
  transform: translateY(-50%) translateX(-5px);
  box-shadow: -6px 6px 20px rgba(102, 126, 234, 0.5);
}

.promo-reopen-btn:active {
  transform: translateY(-50%) translateX(-2px);
}

/* Promotional Banner Styles */
.promo-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-bottom: 2px solid #0f3460;
  padding: 20px 0;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.promo-banner .container {
  position: relative;
  max-width: 1200px;
}

/* Close Button */
.promo-close {
  position: absolute;
  top: -10px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #e94560;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-close:hover {
  background: rgba(233, 69, 96, 0.2);
  transform: rotate(90deg);
  color: #ff6b81;
}

/* Content Layout */
.promo-content {
  color: #e9ecef;
  max-width: 900px;
  margin: 0 auto;
}

/* Header Section */
.promo-header {
  margin-bottom: 16px;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.promo-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 0 0;
  line-height: 1.3;
}

/* Body Content */
.promo-body {
  font-size: 15px;
  line-height: 1.6;
}

.promo-body p {
  margin-bottom: 12px;
  color: #dee2e6;
}

.promo-intro {
  font-size: 16px;
}

.promo-intro strong {
  color: #4ecdc4;
  font-weight: 600;
}

.promo-target {
  color: #ffd93d;
  font-weight: 500;
}

.promo-commitment {
  font-style: italic;
  color: #adb5bd;
  border-left: 3px solid #667eea;
  padding-left: 15px;
  margin: 15px 0;
}

/* Offer Section */
.promo-offer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.offer-badge {
  color: #ffd93d;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-badge i {
  color: #ffd93d;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e9ecef;
  font-size: 15px;
  font-weight: 500;
}

.offer-list i {
  color: #4ecdc4;
  font-size: 14px;
}

/* Action Buttons */
.promo-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-promo {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .promo-reopen-btn {
    font-size: 12px;
    padding: 10px 12px;
  }

  .promo-reopen-btn i {
    font-size: 16px;
  }

  .promo-banner {
    padding: 16px 0;
  }

  .promo-close {
    top: 5px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .promo-title {
    font-size: 18px;
    padding-right: 35px;
  }

  .promo-body {
    font-size: 14px;
  }

  .promo-intro {
    font-size: 15px;
  }

  .offer-badge {
    font-size: 14px;
  }

  .offer-list {
    flex-direction: column;
    gap: 8px;
  }

  .promo-actions {
    flex-direction: column;
  }

  .btn-promo {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 576px) {
  .promo-banner {
    padding: 12px 0;
  }

  .promo-title {
    font-size: 16px;
  }

  .promo-body {
    font-size: 13px;
  }

  .promo-offer {
    padding: 12px;
  }

  .btn-promo {
    font-size: 14px;
    padding: 12px 18px;
  }
}

/* Print Styles - Hide banner when printing */
@media print {
  .promo-banner,
  .promo-reopen-btn {
    display: none !important;
  }
}
