/* column-info-modal.css — Estilos para o modal de informações das colunas */

/* Ícone de informação no header das colunas */
.column-info-icon {
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 16px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.column-info-icon:hover {
  color: #3b82f6;
  transform: scale(1.2);
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.5));
}

/* Modal de informações */
#columnInfoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.column-info-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.column-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 16px 24px;
  border-bottom: 2px solid #e5e7eb;
}

.column-info-sprite {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-image: url('../assets/rony-modal.png');
  background-size: 240px 160px;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.column-info-title {
  font-size: 28px;
  font-weight: bold;
  color: #1f2937;
  flex: 1;
}

.column-info-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.column-info-close:hover {
  background: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

.column-info-body {
  padding: 24px;
}

.column-info-section {
  margin-bottom: 20px;
}

.column-info-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.column-info-section h3::before {
  content: '▶';
  font-size: 14px;
  color: #3b82f6;
}

.column-info-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 12px;
}

.column-info-mechanics {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  background: #f9fafb;
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.column-info-happiness-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.column-info-happiness-list li {
  padding: 8px 12px;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #f0f9ff 0%, #ffffff 100%);
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  border-left: 3px solid #10b981;
}

.column-info-tip {
  font-size: 14px;
  line-height: 1.6;
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  font-style: italic;
}
