/* Modal Popup CCBB */
.ccbb-modal-overlay {
  display: none !important;
}

.ccbb-modal-overlay.active {
  display: block !important;
}

/* Animação de entrada */
.ccbb-modal-overlay.active > div {
  animation: ccbbFadeSlide 0.3s ease;
}

@keyframes ccbbFadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Placeholder no editor do Elementor */
.ccbb-modal-editor-container {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  border: 2px dashed #ccc;
  border-radius: 6px;
}

.ccbb-modal-editor-container p {
  margin: 0 0 5px 0;
  color: #666;
}
