/* Modal do tutorial */

.tutorial-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	pointer-events: none;
}

.tutorial-modal {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	padding: 15px;
	border-radius: 8px;
	z-index: 1002;
	max-width: 90%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tutorial-navigation {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.tutorial-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #ced4da !important;
}

.tutorial-highlight {
	position: relative;
	z-index: 1001; 
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.8);
	border-radius: 8px;
	background: white;
	padding: 10px;
}

.tutorial-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #dc3545; 
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  z-index: 1003;
}

.tutorial-close-btn:hover {
  color: #a71d2a; /* Vermelho escuro */
}

/* Ajuste de espaçamento no conteúdo */
.tutorial-content {
  padding-top: 20px; /* Compensa o botão de fechar */
}

#tutorial_whatsapp.tutorial-highlight {
  position: fixed !important;
  bottom: 75px !important;
  right: 25px !important;
  height: 64px;
  width: 64px;
  z-index: 10010 !important;
  animation: pulse-whatsapp 1.5s infinite;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.8),
			  0 0 20px rgba(255, 215, 0, 0.6) !important;
}

/* Remove transformações do Theia temporariamente */
.theiaStickySidebar.tutorial-highlight-parent {
  position: static !important;
  transform: none !important;
  width: auto !important;
}